You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aruppi-api/src/main/kotlin/com/jeluchu/features/radiostations/models/RadioStationEntity.kt

12 lines
281 B
Kotlin

package com.jeluchu.features.radiostations.models
import kotlinx.serialization.Serializable
@Serializable
data class RadioStationEntity(
val name: String = "",
val image: String = "",
val genre: String = "",
val stream: String = "",
val website: String = ""
)