User
add: pagination
9846869
Raw
History Blame Contribute Delete
143 Bytes
namespace TaskTrackingSystem.Shared;
public class PaginationQuery
{
public int? Page { get; set; }
public int? Limit { get; set; }
}