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 child { get; set; } } }