btcpayserver/BTCPayServer/Security/AuthenticationSchemes.cs
2020-03-23 16:46:49 +01:00

10 lines
253 B
C#

namespace BTCPayServer.Security
{
public class AuthenticationSchemes
{
public const string Cookie = "Identity.Application";
public const string Bitpay = "Bitpay";
public const string Greenfield = "Greenfield";
}
}