SGGL_SHJ/SGGL/Model/APIItem/CQMS/TreeNode.cs

13 lines
306 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
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; }
}
}