mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
13 lines
325 B
Kotlin
13 lines
325 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Subtitle(
|
|
val url: String? = null,
|
|
val mimeType: String? = null,
|
|
val name: String? = null,
|
|
val code: String? = null,
|
|
val autoGenerated: Boolean? = null
|
|
)
|