Coverage Summary for Class: PlaybackState (com.vsevolodganin.clicktrack.player)
| Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| PlaybackState |
0%
(0/1)
|
0%
(0/2)
|
0%
(0/3)
|
0%
(0/66)
|
| PlaybackState$Companion |
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/4)
|
| Total |
0%
(0/2)
|
0%
(0/2)
|
0%
(0/4)
|
0%
(0/70)
|
package com.vsevolodganin.clicktrack.player
import com.vsevolodganin.clicktrack.model.PlayProgress
import com.vsevolodganin.clicktrack.model.PlayableId
import kotlinx.serialization.Serializable
@Serializable
data class PlaybackState(
val id: PlayableId,
val progress: PlayProgress,
)