piwigodotnet/PiwigoDotnet/Piwigo.Client/Contract/CommentPagingInfo.cs
2022-10-22 23:20:26 +02:00

7 lines
294 B
C#

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