mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-29 00:10:32 +05:30
11 lines
262 B
Kotlin
11 lines
262 B
Kotlin
package com.github.libretube.obj
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
data class Segments(
|
|
val segments: MutableList<Segment> = arrayListOf()
|
|
) {
|
|
constructor() : this(arrayListOf())
|
|
}
|