commonMain.dev.datlag.kast.VolumeInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kast-jvm Show documentation
Show all versions of kast-jvm Show documentation
Kotlin multiplatform casting library.
package dev.datlag.kast
import kotlinx.serialization.Serializable
@Serializable
data class VolumeInfo(
val fixed: Boolean,
val current: Int,
val max: Int
)