hello-shop/src/HelloShop.ServiceDefaults/Authorization/IPermissionChecker.cs
2024-03-27 20:40:28 +08:00

11 lines
360 B
C#

using System.Security.Claims;
namespace HelloShop.ServiceDefaults.Authorization;
public interface IPermissionChecker
{
Task<bool> IsGrantedAsync(string name, string? resourceType = null, string? resourceId = null);
Task<bool> IsGrantedAsync(ClaimsPrincipal claimsPrincipal, string name, string? resourceType = null, string? resourceId = null);
}