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.
17 lines
485 B
17 lines
485 B
namespace Identity.Api.Clean.Contracts.Models;
|
|
|
|
public class PermissionGrantModel
|
|
{
|
|
/// <summary>
|
|
/// R = 角色 ,UO开启角色上没有的 UD禁用角色上的
|
|
/// </summary>
|
|
public string ProviderName { get; set; }
|
|
/// <summary>
|
|
/// 权限名称 权限组_权限_子权限
|
|
/// </summary>
|
|
public string PermissionName { get; set; }
|
|
/// <summary>
|
|
/// 角色Id 或者 用户Id
|
|
/// </summary>
|
|
public Guid ProviderKey { get; set; }
|
|
}
|
|
|