2022-05-20 00:22:10 +02:00

13 lines
344 B
Kotlin

package com.github.libretube.obj
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
@JsonIgnoreProperties(ignoreUnknown = true)
data class CommentsPage(
val comments: MutableList<Comment> = arrayListOf(),
val disabled: Boolean? = null,
val nextpage: String? = "",
) {
constructor() : this(arrayListOf(), null, "")
}