mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Decouple Shopify from Store * Decouple shopify from store blob * Update BTCPayServer.Tests.csproj * Make sure shopify obj is set * make shopify a system plugin
19 lines
595 B
C#
19 lines
595 B
C#
namespace BTCPayServer.Plugins.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 status { get; set; }
|
|
public string authorization { get; set; }
|
|
}
|
|
}
|
|
}
|