namespace APILOL.Controllers.Request { public class PageRequest { public bool isDesc { get; set; } = false; public int offset { get; set; } = 0; public string? orderingPropertyName { get; set; } = "Name"; public int limit { get; set; } = 10; } }