1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- namespace MySystem
- {
- public class AdminRightListItem
- {
- public string path { get; set; }
- public string name { get; set; }
- public AdminRightListItemMeta meta { get; set; }
- public List<AdminRightListItem> children { get; set; }
- }
- public class AdminRightListItemMeta
- {
- public string title { get; set; }
- public string icon { get; set; }
- public List<string> roles { get; set; }
- public List<string> auths { get; set; }
- }
- }
|