Properly map addresses to invoice, use new nbxplorer

This commit is contained in:
NicolasDorier
2017-10-06 10:37:38 +09:00
parent 8b4e572e16
commit f456d62d3c
12 changed files with 535 additions and 37 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Data
{
public class AddressInvoiceData
{
public string Address
{
get; set;
}
public InvoiceData InvoiceData
{
get; set;
}
public string InvoiceDataId
{
get; set;
}
}
}