mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-09 00:04:20 +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; }
|
|
}
|
|
}
|