using System.Collections.Generic; namespace WeOnlineApp.BaseSystem.Users.Dto { public class PermissionAuthDto { public string Name { get; set; } public string PermDisplayName { get; set; } public int Sort { get; set; } public string Icon { get; set; } public bool IsOpen { get; set; } public bool IsAuth { get; set; } public List Children { get; set; } } }