2022-07-24 12:15:51 +02:00

11 lines
278 B
Kotlin

package com.github.libretube.obj
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
@JsonIgnoreProperties(ignoreUnknown = true)
data class Segment(
val actionType: String? = null,
val category: String? = null,
val segment: List<Float>? = arrayListOf()
)