mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-27 23:40:33 +05:30
11 lines
203 B
Kotlin
11 lines
203 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.github.libretube.api.obj.Streams
|
|
|
|
data class DownloadedFile(
|
|
val name: String,
|
|
val size: Long,
|
|
val type: Int,
|
|
var metadata: Streams? = null
|
|
)
|