mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +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; }
|
|
}
|
|
}
|