AdminRightListItem.cs 601 B

123456789101112131415161718192021
  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 string component { get; set; }
  10. public AdminRightListItemMeta meta { get; set; }
  11. public List<AdminRightListItem> children { get; set; }
  12. }
  13. public class AdminRightListItemMeta
  14. {
  15. public string title { get; set; }
  16. public string icon { get; set; }
  17. public List<string> roles { get; set; }
  18. public List<string> auths { get; set; }
  19. }
  20. }