
io.opengood.api.rest.contracts.page.PageData.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 PageData(
val state: PageState,
val index: Int,
val size: Int,
val count: Int
) {
companion object {
val EMPTY = PageData(
state = PageState.NONE,
index = 0,
size = 0,
count = 0
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy