namespace BTCPayServer.Abstractions.Constants { public class AuthenticationSchemes { public const string Cookie = "Identity.Application"; /// /// The user could log in; however, some policies prevented him access to BTCPay Server. /// public const string LimitedLogin = "LimitedLogin"; 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"; } }