mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-05 23:24:27 +01:00
11 lines
194 B
C#
11 lines
194 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Services.Shopify.ApiModels
|
|
{
|
|
public class CountResponse
|
|
{
|
|
[JsonProperty("count")]
|
|
public long Count { get; set; }
|
|
}
|
|
}
|