Add payment requests

This commit is contained in:
Kukks
2019-01-14 22:43:29 +01:00
committed by nicolas.dorier
parent 1e7a2ffe97
commit ad25a2ed08
30 changed files with 2884 additions and 10 deletions

View File

@@ -21,6 +21,7 @@ using BTCPayServer.Payments.Changelly;
using BTCPayServer.Payments.CoinSwitch;
using BTCPayServer.Security;
using BTCPayServer.Rating;
using BTCPayServer.Services.PaymentRequests;
using BTCPayServer.Services.Mails;
namespace BTCPayServer.Data
@@ -41,6 +42,11 @@ namespace BTCPayServer.Data
{
get; set;
}
public List<PaymentRequestData> PaymentRequests
{
get; set;
}
public List<InvoiceData> Invoices { get; set; }