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