2022-05-16 15:41:22 +05:30
|
|
|
package com.github.libretube.obj
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
|
data class Segments(
|
|
|
|
val segments: MutableList<Segment> = arrayListOf()
|
2022-07-24 15:26:53 +05:30
|
|
|
)
|