btcpayserver/BTCPayServer/Data/PendingInvoiceData.cs
2018-07-19 19:31:17 +09:00

17 lines
301 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Data
{
public class PendingInvoiceData
{
public string Id
{
get; set;
}
public InvoiceData InvoiceData { get; set; }
}
}