package com.github.libretube.obj import com.fasterxml.jackson.annotation.JsonIgnoreProperties @JsonIgnoreProperties(ignoreUnknown = true) data class Segments( val segments: MutableList = arrayListOf() ) { constructor() : this(arrayListOf()) }