Files
btcpayserver/BTCPayServer/Services/Shopify/ApiModels/TransactionsListResp.cs

11 lines
268 B
C#

using System.Collections.Generic;
using BTCPayServer.Services.Shopify.ApiModels.DataHolders;
namespace BTCPayServer.Services.Shopify.ApiModels
{
public class TransactionsListResp
{
public List<TransactionDataHolder> transactions { get; set; }
}
}