namespace AMWD.Net.Api.Cloudflare
{
///
/// Information about pagination.
/// Source
///
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; }
}
}