btcpayserver/BTCPayServer/Services/Shopify/ApiModels/OrdersCountResp.cs

11 lines
194 B
C#
Raw Normal View History

2020-09-18 17:20:31 +02:00
using Newtonsoft.Json;
namespace BTCPayServer.Services.Shopify.ApiModels
{
2020-09-18 17:20:31 +02:00
public class CountResponse
{
2020-09-18 17:20:31 +02:00
[JsonProperty("count")]
public long Count { get; set; }
}
}