pcut_uwp/PCUT/PCUT.Entities/Pagination.cs

23 lines
476 B
C#
Raw Normal View History

2024-08-21 16:02:56 +00:00
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; }
}
}