mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-27 23:40:33 +05:30
11 lines
259 B
Kotlin
11 lines
259 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class ChapterSegment(
|
|
var title: String? = null,
|
|
var image: String? = null,
|
|
var start: Long? = null
|
|
)
|