mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
12 lines
230 B
Kotlin
12 lines
230 B
Kotlin
|
package xyz.btcland.libretube.obj
|
||
|
|
||
|
data class Subtitle(
|
||
|
val url: String?,
|
||
|
val mimeType: String?,
|
||
|
val name: String?,
|
||
|
val code: String?,
|
||
|
val autoGenerated: Boolean?
|
||
|
){
|
||
|
constructor(): this("","","","",null)
|
||
|
}
|