NewPipe/app/src/main/java/org/schabi/newpipe/database/stream/StreamWithState.kt

15 lines
409 B
Kotlin
Raw Normal View History

2023-02-16 06:37:44 +00:00
package org.schabi.newpipe.database.stream
import androidx.room.ColumnInfo
import androidx.room.Embedded
import org.schabi.newpipe.database.stream.model.StreamEntity
import org.schabi.newpipe.database.stream.model.StreamStateEntity
data class StreamWithState(
@Embedded
val stream: StreamEntity,
@ColumnInfo(name = StreamStateEntity.STREAM_PROGRESS_MILLIS)
val stateProgressMillis: Long?
)