All Downloads are FREE. Search and download functionalities are using the official Maven repository.

invirt.data.RecordsPage.kt Maven / Gradle / Ivy

There is a newer version: 0.10.11
Show newest version
package invirt.data

data class RecordsPage(
    val records: List,
    val count: Long,
    val page: Page,
    val sort: Sort? = null
) {
    val pagination = Pagination(page, count)

    companion object {
        fun  empty() = RecordsPage(emptyList(), 0, Page(0, 1))
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy