[feat:] forgot to git-add the wiki source files... here they are
This commit is contained in:
13
Wiki/WikiItem.cs
Normal file
13
Wiki/WikiItem.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user