mirror of
https://github.com/Michatec/Radio.git
synced 2026-05-31 06:32:39 +02:00
17 lines
360 B
Kotlin
17 lines
360 B
Kotlin
package com.michatec.radio.ui
|
|
|
|
import android.os.Parcelable
|
|
import com.google.gson.annotations.Expose
|
|
import kotlinx.parcelize.Parcelize
|
|
|
|
|
|
/*
|
|
* PlayerState class
|
|
*/
|
|
@Parcelize
|
|
data class PlayerState(
|
|
@Expose var stationUuid: String = String(),
|
|
@Expose var isPlaying: Boolean = false,
|
|
@Expose var sleepTimerRunning: Boolean = false
|
|
) : Parcelable
|