mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
34 lines
543 B
C#
34 lines
543 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class PaymentData
|
|
{
|
|
public string Id
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string InvoiceDataId
|
|
{
|
|
get; set;
|
|
}
|
|
public InvoiceData InvoiceData
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public byte[] Blob
|
|
{
|
|
get; set;
|
|
}
|
|
public bool Accounted
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|