Created
September 3, 2019 12:38
-
-
Save ntakouris/5dc465e2dbf713c6f14028cb225f2995 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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