Refactor authentication handlers

This commit is contained in:
nicolas.dorier
2019-06-09 01:36:54 +09:00
parent ca5be7e38d
commit e5ba7b9e69
6 changed files with 201 additions and 207 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authentication;
namespace BTCPayServer.Security.Bitpay
{
public class BitpayAuthenticationOptions : AuthenticationSchemeOptions
{
}
}