AdminRightListItem.cs 555 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class AdminRightListItem
  6. {
  7. public string path { get; set; }
  8. public string name { get; set; }
  9. public AdminRightListItemMeta meta { get; set; }
  10. public List<AdminRightListItem> children { get; set; }
  11. }
  12. public class AdminRightListItemMeta
  13. {
  14. public string title { get; set; }
  15. public string icon { get; set; }
  16. public List<string> roles { get; set; }
  17. public List<string> auths { get; set; }
  18. }
  19. }