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.
 
 
 
 
 

16 lines
360 B

using Easy.Authorization.Abstractions;
namespace Identity.Api.Infrastructure;
public class PermissionManager : IPermissionManager
{
public PermissionManager()
{
}
//验证权限
public Task<bool> IsGrantedAsync(string permissionName, string providerName, string providerKey)
{
throw new NotImplementedException();
}
}