mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 01:53:52 +01:00
28 lines
366 B
C#
28 lines
366 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BTCPayServer.Data
|
|||
|
{
|
|||
|
public class RefundAddressesData
|
|||
|
{
|
|||
|
public string Id
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public string InvoiceDataId
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public InvoiceData InvoiceData
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
public byte[] Blob
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|