mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
12 lines
511 B
C#
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";
|
|
}
|
|
}
|