You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
715 B

namespace Easy.AuthorityManagement.Clean.Shared.Modles;
public class PermissionModel
{
/// <summary>
/// 子权限
/// </summary>
public List<PermissionModel> Children { get; set; }
/// <summary>
/// 权限的唯一名称。
/// </summary>
public string PermissionName { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool IsEnabled { get; set; }
/// <summary>
/// 显示名称
/// </summary>
public string DisplayName { get; set; }
/// <summary>
/// 是否生效
/// </summary>
public bool IsGranted { get; set; }
}