btcpayserver/BTCPayServer.Abstractions/Constants/AuthenticationSchemes.cs

12 lines
425 B
C#
Raw Normal View History

namespace BTCPayServer.Abstractions.Constants
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
}
}