User
add: pagination
9846869
Raw
History Blame Contribute Delete
281 Bytes
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; }
}