mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
新增文档分类列表树
This commit is contained in:
16
Examples/website/FreeSql.Site.Entity/Common/TreeNode.cs
Normal file
16
Examples/website/FreeSql.Site.Entity/Common/TreeNode.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSql.Site.Entity.Common
|
||||
{
|
||||
public class TreeNode
|
||||
{
|
||||
public string id { get; set; }
|
||||
|
||||
public string pid { get; set; }
|
||||
|
||||
public string title { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user