mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
16 lines
413 B
C#
16 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using OpenIddict.Validation;
|
|
|
|
namespace BTCPayServer.Security
|
|
{
|
|
public class AuthenticationSchemes
|
|
{
|
|
public const string Cookie = "Identity.Application";
|
|
public const string Bitpay = "Bitpay";
|
|
public const string OpenId = OpenIddictValidationDefaults.AuthenticationScheme;
|
|
}
|
|
}
|