File size: 281 Bytes
9846869
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
namespace TaskTrackingSystem.Shared;

public class PagedResult<T>
{
    public List<T> Items { get; set; } = new();
    public int TotalCount { get; set; }
    public int Page { get; set; } = 1;
    public int PageSize { get; set; } = 20;
    public int TotalPages { get; set; }
}