mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-07 10:00:31 +05:30
11 lines
260 B
Kotlin
11 lines
260 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())
|
||
|
}
|