30 lines
708 B
C#
30 lines
708 B
C#
|
|
namespace Payments.BTCPayServer.Models
|
|
{
|
|
|
|
public struct BtcPayInvoiceMetaData
|
|
{
|
|
public string buyerZip;
|
|
public string buyerName;
|
|
public string buyerEmail;
|
|
public string orderId;
|
|
public string itemDesc;
|
|
|
|
}
|
|
|
|
public struct BtcPayInvoiceCheckout
|
|
{
|
|
public string defaultLanguage;
|
|
public string redirectURL;
|
|
public bool redirectAutomatically;
|
|
public bool requiresRefundEmail;
|
|
}
|
|
|
|
public struct BtcPayInvoiceModel
|
|
{
|
|
public BtcPayInvoiceMetaData metadata;
|
|
public BtcPayInvoiceCheckout checkout;
|
|
public string currency;
|
|
public string amount;
|
|
}
|
|
} |