commonMain.app.moviebase.trakt.model.TraktRatingModel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trakt-api-jvm Show documentation
Show all versions of trakt-api-jvm Show documentation
Kotlin Multiplatform library to access the Trakt API.
// ktlint-disable filename
package app.moviebase.trakt.model
import kotlinx.serialization.Serializable
@Serializable
data class TraktRating(
val rating: Double,
val votes: Int,
)