zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Constants/AuthorizeConstants.cs

9 lines
252 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.IdentityServer.API.Constants
{
public class AuthorizeConstants
{
public const string TenantOwnerPolicyName = TenantOwnerRequireRole;
public const string TenantOwnerRequireRole = "TenantOwner";
}
}