mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-01 00:59:15 +01:00
18 lines
549 B
C#
18 lines
549 B
C#
namespace BTCPayServer.Services.Shopify.ApiModels
|
|
{
|
|
public class TransactionsCreateReq
|
|
{
|
|
public DataHolder transaction { get; set; }
|
|
|
|
public class DataHolder
|
|
{
|
|
public string currency { get; set; }
|
|
public string amount { get; set; }
|
|
public string kind { get; set; }
|
|
public long? parent_id { get; set; }
|
|
public string gateway { get; set; }
|
|
public string source { get; set; }
|
|
public string authorization { get; set; }
|
|
}
|
|
}
|
|
}
|