23 lines
476 B
C#
23 lines
476 B
C#
|
using Newtonsoft.Json;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace PCUT.Entities
|
|||
|
{
|
|||
|
public class Pagination
|
|||
|
{
|
|||
|
[JsonProperty("page")]
|
|||
|
public int Page { get; set; }
|
|||
|
|
|||
|
[JsonProperty("pageSize")]
|
|||
|
public int PageSize { get; set; }
|
|||
|
|
|||
|
[JsonProperty("totalPages")]
|
|||
|
public int TotalPages { get; set; }
|
|||
|
|
|||
|
[JsonProperty("totalRecords")]
|
|||
|
public int TotalRecords { get; set; }
|
|||
|
}
|
|||
|
}
|