[feat:] forgot to git-add the wiki source files... here they are

This commit is contained in:
2026-01-13 18:33:35 +01:00
parent aeb4092f28
commit 99b35c0aaf
7 changed files with 279 additions and 0 deletions

13
Wiki/WikiItem.cs Normal file
View 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;
}