mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
11 lines
278 B
Kotlin
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()
|
|
)
|