Refactor authorizations

This commit is contained in:
nicolas.dorier
2019-10-12 20:35:30 +09:00
parent bd94b5f84e
commit 281a2461ad
55 changed files with 732 additions and 646 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Security.Bitpay
{
public class BitpayClaims
{
public const string SIN = "Bitpay.SIN";
public const string ApiKeyStoreId = "Bitpay.ApiKeyStoreId";
}
}