namespace Identity.Api.Clean.Contracts.Inputs; public class UpdatePermissionsInput { /// /// 提供者名称 /// public string ProviderName { get; set; } /// /// 提供者Key /// public Guid ProviderKey { get; set; } /// /// 权限信息 /// public UpdatePermissionDto[] Permissions { get; set; } } public class UpdatePermissionDto { /// /// 权限名称 /// public string PermissionName { get; set; } /// /// 是否生效 /// public bool IsGranted { get; set; } }