Struct Pagination
- Namespace
- SIMDispatcher.Core.Models
- Assembly
- SIMDispatcher.Core.dll
Represents pagination details and includes information about current page, total pages, page size, and total items.
public readonly struct Pagination
- Inherited Members
Properties
CurrentPage
Gets the number of the current page in the pagination sequence.
public int CurrentPage { get; init; }
Property Value
PageSize
Gets the number of items per page.
public int PageSize { get; init; }
Property Value
TotalItems
Gets the total number of items across all pages.
public int TotalItems { get; init; }
Property Value
TotalPages
Gets the total number of pages available.
public int TotalPages { get; init; }
Property Value
Methods
ToString()
Returns the fully qualified type name of this instance.
public override string ToString()
Returns
- string
The fully qualified type name.