9 lines
264 B
C#
9 lines
264 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public class TemplateFolderInfo
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string RelativePath { get; set; } = string.Empty;
|
|
public List<TemplateFolderInfo> Children { get; set; } = new();
|
|
}
|