FuncTree.cs 365 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllUfpEntity
  5. {
  6. public class FuncTree
  7. {
  8. public string Key { get; set; }
  9. public string Title { get; set; }
  10. public bool IsLeaf { get; set; }
  11. public bool? Expanded { get; set; } = true;
  12. public IList<FuncTree> Children { get; set; }
  13. }
  14. }