btcpayserver/BTCPayServer/Security/GreenField/GreenFieldConstants.cs

14 lines
349 B
C#
Raw Normal View History

2022-01-14 13:05:23 +09:00
namespace BTCPayServer.Security.Greenfield
2020-03-27 12:58:45 +09:00
{
2022-01-14 13:05:23 +09:00
public static class GreenfieldConstants
2020-03-27 12:58:45 +09:00
{
public const decimal MaxAmount = ulong.MaxValue;
2022-01-14 13:05:23 +09:00
public const string AuthenticationType = "Greenfield";
2020-03-27 12:58:45 +09:00
public static class ClaimTypes
{
public const string Permission = "APIKey.Permission";
}
}
}