You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LOLProject/Sources/APILOL/Controllers/Request/PageRequest.cs

14 lines
296 B

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;
}
}