mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
12 lines
250 B
Kotlin
12 lines
250 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import android.graphics.Bitmap
|
|
import com.github.libretube.api.obj.Streams
|
|
|
|
data class DownloadedFile(
|
|
val name: String,
|
|
val size: Long,
|
|
var metadata: Streams? = null,
|
|
var thumbnail: Bitmap? = null
|
|
)
|