mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-31 04:34:26 +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
11 lines
266 B
C#
11 lines
266 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Plugins.Shopify.ApiModels.DataHolders;
|
|
|
|
namespace BTCPayServer.Plugins.Shopify.ApiModels
|
|
{
|
|
public class TransactionsListResp
|
|
{
|
|
public List<TransactionDataHolder> transactions { get; set; }
|
|
}
|
|
}
|