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

io.opengood.api.rest.contracts.page.PageRequest.kt Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package io.opengood.api.rest.contracts.page

data class PageRequest(
    val index: Int,
    val size: Int
) {
    companion object {
        val EMPTY = PageRequest(
            index = 0,
            size = 0
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy