zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Constants/AuthorizeConstants.cs
2023-12-05 17:22:48 +08:00

9 lines
252 B
C#

namespace ZeroFramework.IdentityServer.API.Constants
{
public class AuthorizeConstants
{
public const string TenantOwnerPolicyName = TenantOwnerRequireRole;
public const string TenantOwnerRequireRole = "TenantOwner";
}
}