20220905代码初始化

This commit is contained in:
2022-09-05 16:36:31 +08:00
commit 74d3922232
14611 changed files with 2121475 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.Collections.Generic;
namespace Model
{
public class TreeNode
{
public string Title { get; set; }
public string ID { get; set; }
public string Type { get; set; }
public int Depth { get; set; }
public List<TreeNode> child { get; set; }
}
}