IPagedList

interface IPagedList<out T>

Interface representing a paginated list of items with total count information.

This interface provides access to both the total number of items available and the current page of items in the list.

Parameters

T

The type of items in the list.

Inheritors

Properties

Link copied to clipboard
abstract val list: List<T>

The list of items for the current page.

Link copied to clipboard
abstract val total: Long

The total number of items available across all pages.