LibreTube/app/src/main/java/com/github/libretube/obj/DownloadStatus.kt
2023-06-25 11:35:07 +02:00

19 lines
409 B
Kotlin

package com.github.libretube.obj
sealed class DownloadStatus {
object Completed : DownloadStatus()
object Paused : DownloadStatus()
object Stopped : DownloadStatus()
data class Progress(
val progress: Long,
val downloaded: Long,
val total: Long
) : DownloadStatus()
data class Error(val message: String, val cause: Throwable? = null) : DownloadStatus()
}