using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FineAdmin.Model { public class TreeSelect { public int id { get; set; } public string name { get; set; } public bool open { get; set; } public IEnumerable children { get; set; } } }