btcpayserver/BTCPayServer/Plugins/Shopify/ApiModels/TransactionsCreateResp.cs
Andrew Camilleri 5de93f8cc4
Abstract Store integrations (#2384)
* Decouple Shopify from Store

* Decouple shopify from store blob

* Update BTCPayServer.Tests.csproj

* Make sure shopify obj is set

* make shopify a system plugin
2021-04-08 13:37:05 +09:00

9 lines
227 B
C#

using BTCPayServer.Plugins.Shopify.ApiModels.DataHolders;
namespace BTCPayServer.Plugins.Shopify.ApiModels
{
public class TransactionsCreateResp
{
public TransactionDataHolder transaction { get; set; }
}
}