mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 16:30:31 +05:30
13 lines
278 B
Kotlin
13 lines
278 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class ChapterSegment(
|
|
var title: String?,
|
|
var image: String?,
|
|
var start: Int?
|
|
) {
|
|
constructor() : this("", "", -1)
|
|
}
|