10 lines
302 B
C#
10 lines
302 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public class TemplateLibraryInfo
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string BaseType { get; set; } = string.Empty;
|
|
public int BaseTemplate { get; set; }
|
|
public List<TemplateFolderInfo> Folders { get; set; } = new();
|
|
}
|