| 1234567891011121314151617181920 |
- using Masuit.MyBlogs.Core.Models.Enum;
- namespace Masuit.MyBlogs.Core.Models
- {
- public class Pagination
- {
- public Pagination(int page, int size, int total, OrderBy? orderBy = null)
- {
- Page = page;
- Size = size;
- TotalCount = total;
- OrderBy = orderBy;
- }
- public int Page { get; set; } = 1;
- public int Size { get; set; } = 15;
- public OrderBy? OrderBy { get; set; }
- public int TotalCount { get; set; }
- }
- }
|