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 children { get; set; } } public class AdminRightListItemMeta { public string title { get; set; } public string icon { get; set; } public List roles { get; set; } public List auths { get; set; } } }