namespace SharepointToolbox.Core.Models; public class TemplateFolderInfo { public string Name { get; set; } = string.Empty; public string RelativePath { get; set; } = string.Empty; public List Children { get; set; } = new(); }