2026-05-20 06:12:54 +02:00
|
|
|
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; }
|
2026-05-31 19:31:27 +02:00
|
|
|
public FileCategory Category { get; set; }
|
2026-05-20 06:12:54 +02:00
|
|
|
public List<FileTreeItem> Children { get; set; } = new();
|
|
|
|
|
}
|