btcpayserver/BTCPayServer/Security/AuthenticationSchemes.cs

12 lines
414 B
C#
Raw Normal View History

2020-02-24 16:40:04 +01:00
namespace BTCPayServer.Security
2019-10-12 20:35:30 +09:00
{
public class AuthenticationSchemes
{
public const string Cookie = "Identity.Application";
public const string Bitpay = "Bitpay";
public const string Greenfield = "Greenfield.APIKeys,Greenfield.Basic";
public const string GreenfieldAPIKeys = "Greenfield.APIKeys";
public const string GreenfieldBasic = "Greenfield.Basic";
2019-10-12 20:35:30 +09:00
}
}