io.opengood.api.rest.contracts.page.PageRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-contracts Show documentation
Show all versions of rest-api-contracts Show documentation
Reusable REST API contracts
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
)
}
}