namespace AMWD.Net.Api.Cloudflare { /// /// Cloudflare pagination information. /// public class PaginationInfo { /// /// Total number of results for the requested service. /// [JsonProperty("count")] public int Count { get; set; } /// /// Current page within paginated list of results. /// [JsonProperty("page")] public int Page { get; set; } /// /// Number of results per page of results. /// [JsonProperty("per_page")] public int PerPage { get; set; } /// /// Total results available without any search parameters. /// [JsonProperty("total_count")] public int TotalCount { get; set; } /// /// Total number of pages of results. /// [JsonProperty("total_pages")] public int TotalPages { get; set; } } }