mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-01 00:59:15 +01:00
* Decouple Shopify from Store * Decouple shopify from store blob * Update BTCPayServer.Tests.csproj * Make sure shopify obj is set * make shopify a system plugin
10 lines
193 B
C#
10 lines
193 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Shopify.ApiModels
|
|
{
|
|
public class CountResponse
|
|
{
|
|
[JsonProperty("count")]
|
|
public long Count { get; set; }
|
|
}
|
|
}
|