LibreTube/app/src/main/java/com/github/libretube/obj/Subtitle.kt

15 lines
341 B
Kotlin
Raw Normal View History

2022-02-01 21:22:06 +05:30
package com.github.libretube.obj
2021-12-18 16:34:14 +05:30
2022-02-08 21:04:42 +05:30
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
@JsonIgnoreProperties(ignoreUnknown = true)
2021-12-18 16:34:14 +05:30
data class Subtitle(
val url: String?,
val mimeType: String?,
val name: String?,
val code: String?,
val autoGenerated: Boolean?
2022-05-20 03:52:10 +05:30
) {
constructor() : this("", "", "", "", null)
2021-12-18 16:34:14 +05:30
}