package com.github.libretube.api.obj import kotlinx.serialization.Serializable @Serializable data class CommentsPage( var comments: List = emptyList(), val disabled: Boolean = false, val nextpage: String? = null, val commentCount: Long = 0 )