10 lines
326 B
C#
10 lines
326 B
C#
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<FileTreeItem> Children { get; set; } = new();
|
|
}
|