btcpayserver/BTCPayServer/Security/GreenField/GreenFieldConstants.cs
2022-01-14 13:46:04 +09:00

13 lines
292 B
C#

namespace BTCPayServer.Security.Greenfield
{
public static class GreenfieldConstants
{
public const string AuthenticationType = "Greenfield";
public static class ClaimTypes
{
public const string Permission = "APIKey.Permission";
}
}
}