using System; using System.Collections.Generic; using System.Text; namespace DllUfpEntity { public class FuncTree { public string Key { get; set; } public string Title { get; set; } public bool IsLeaf { get; set; } public bool? Expanded { get; set; } = true; public IList Children { get; set; } } }