btcpayserver/BTCPayServer.Abstractions/Constants/AuthenticationSchemes.cs
2024-07-25 18:58:07 +02:00

12 lines
511 B
C#

namespace BTCPayServer.Abstractions.Constants
{
public class AuthenticationSchemes
{
public const string Cookie = "Identity.Application";
public const string Bitpay = "Bitpay";
public const string Greenfield = "Greenfield.APIKeys,Greenfield.Basic,Greenfield.Bearer";
public const string GreenfieldAPIKeys = "Greenfield.APIKeys";
public const string GreenfieldBasic = "Greenfield.Basic";
public const string GreenfieldBearer = "Greenfield.Bearer";
}
}