mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 13:14:30 +01:00
14 lines
349 B
C#
14 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";
|
|
}
|
|
}
|
|
}
|