Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created September 3, 2019 12:38
Show Gist options
  • Save ntakouris/5dc465e2dbf713c6f14028cb225f2995 to your computer and use it in GitHub Desktop.
Save ntakouris/5dc465e2dbf713c6f14028cb225f2995 to your computer and use it in GitHub Desktop.
public class PaginationQuery
{
public PaginationQuery()
{
PageNumber = 1;
PageSize = 100;
}
public PaginationQuery(int pageNumber, int pageSize)
{
PageNumber = pageNumber;
PageSize = pageSize;
}
public int PageNumber { get; set; }
public int PageSize { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment