piwigodotnet/PiwigoDotnet/Piwigo.Client/Contract/ImagePagingInfo.cs

5 lines
233 B
C#

using Newtonsoft.Json;
namespace Piwigo.Client.Contract;
public record ImagePagingInfo([property: JsonProperty("page")] int Page, [property: JsonProperty("per_page")] int PageSize, [property: JsonProperty("count")] int TotalItems);