LibreTube/app/src/main/java/com/github/libretube/obj/Segments.kt

11 lines
262 B
Kotlin
Raw Normal View History

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-05-20 03:52:10 +05:30
) {
constructor() : this(arrayListOf())
2022-05-16 15:41:22 +05:30
}