mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
5de93f8cc4
* Decouple Shopify from Store * Decouple shopify from store blob * Update BTCPayServer.Tests.csproj * Make sure shopify obj is set * make shopify a system plugin
20 lines
595 B
C#
20 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; }
|
|
}
|
|
}
|
|
}
|