before ugrade

This commit is contained in:
2025-08-17 10:20:04 +10:00
parent de9cf16e8f
commit 230be1edb0
18 changed files with 263 additions and 87 deletions
+3 -1
View File
@@ -6,10 +6,12 @@ public class TreeNode<T>
public T? Data { get; set; }
public List<TreeNode<T>>? Children { get; set; }
public string? Icon { get; set; }
public bool? Checked { get; set; }
public bool? Checked { get; set; }
public bool? Leaf { get; set; }
public bool? Expanded { get; set; }
public string? Type { get; set; }
public string StyleClass { get; set; }
public string? Key { get; set; }
public bool? Loading { get; set; }
}