pcut_uwp/PCUT/PCUT.Entities/ApiResponse/Pagination.cs

23 lines
489 B
C#
Raw Permalink Normal View History

2024-08-21 16:02:56 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
2025-01-08 13:14:50 +00:00
namespace PCUT.Entities.ApiResponse
2024-08-21 16:02:56 +00:00
{
2025-01-08 13:14:50 +00:00
public class Pagination
2024-08-21 16:02:56 +00:00
{
[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; }
}
}