mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
18 lines
477 B
C#
18 lines
477 B
C#
namespace Kavita.Common.Helpers;
|
|
|
|
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; }
|
|
}
|