jvmMain.ru.astrainteractive.klibs.sample.feature.service.model.Status.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sample-jvm Show documentation
Show all versions of sample-jvm Show documentation
Kotlin Multiplatform paging library
package ru.astrainteractive.klibs.sample.feature.service.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
internal enum class Status(val string: String) {
@SerialName("Alive")
ALIVE("Alive"),
@SerialName("Dead")
DEAD("Dead"),
@SerialName("unknown")
UNKNOWN("unknown")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy