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 Children { get; } = new(); public override string ToString() => Name; }