namespace AuthorBuddy.Web.Models; public class FileTreeItem { public string Name { get; set; } = string.Empty; public string FullPath { get; set; } = string.Empty; public bool IsDirectory { get; set; } public FileCategory Category { get; set; } public List Children { get; set; } = new(); }