Implements search functionality and prepares for upcoming paging in v0.3.
This commit is contained in:
parent
852317d3a6
commit
2887fab53f
17 changed files with 174 additions and 15 deletions
|
|
@ -2,6 +2,17 @@
|
|||
{
|
||||
public class PaginationHeader
|
||||
{
|
||||
|
||||
public PaginationHeader(int currentPage, int itemsPerPage, int totalItems, int totalPages)
|
||||
{
|
||||
CurrentPage = currentPage;
|
||||
ItemsPerPage = itemsPerPage;
|
||||
TotalItems = totalItems;
|
||||
TotalPages = totalPages;
|
||||
}
|
||||
|
||||
public int CurrentPage { get; set; }
|
||||
public int ItemsPerPage { get; set; }
|
||||
public int TotalItems { get; set; }
|
||||
public int TotalPages { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue