mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +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
9 lines
227 B
C#
9 lines
227 B
C#
using BTCPayServer.Plugins.Shopify.ApiModels.DataHolders;
|
|
|
|
namespace BTCPayServer.Plugins.Shopify.ApiModels
|
|
{
|
|
public class TransactionsCreateResp
|
|
{
|
|
public TransactionDataHolder transaction { get; set; }
|
|
}
|
|
}
|