btcpayserver/BTCPayServer/Data/PaymentData.cs

34 lines
543 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Data
{
public class PaymentData
{
public string Id
{
get; set;
}
2017-09-13 15:47:34 +09:00
public string InvoiceDataId
{
get; set;
}
public InvoiceData InvoiceData
{
get; set;
}
2017-09-13 15:47:34 +09:00
public byte[] Blob
{
get; set;
}
2017-11-06 00:31:02 -08:00
public bool Accounted
{
get; set;
}
}
2017-09-13 15:47:34 +09:00
}