btcpayserver/BTCPayServer/Security/GreenField/GreenFieldConstants.cs

13 lines
349 B
C#

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