using LFlow.Base.Interfaces; using LFlow.Permission.Model; namespace LFlow.Role.Model { public class RoleDto : IModel { public string? ID { get; set; } public string? RoleName { get; set; } public string? RoleDesc { get; set; } public string? RoleType { get; set; } public string? RoleStatus { get; set; } public bool? IsDefault { get; set; } public bool? IsEnable { get; set; } /// /// 权限列表 /// public List Permissions { get; set; } = []; } }