14 lines
325 B
C#
14 lines
325 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Logof_Client.Wiki;
|
|
|
|
public class WikiItem
|
|
{
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public bool IsFolder { get; set; }
|
|
public ObservableCollection<WikiItem> Children { get; } = new();
|
|
|
|
public override string ToString() => Name;
|
|
}
|