package com.github.libretube.obj import com.github.libretube.obj.Subtitle data class Streams( val title: String?, val description: String?, val uploadDate: String?, val uploader: String?, val uploaderUrl: String?, val uploaderAvatar: String?, val thumbnailUrl: String?, val hls: String?, val dash: String?, val lbryId: String?, val uploaderVerified: Boolean?, val duration: Int?, val views: Long?, val likes: Long?, val dislikes: Int?, val audioStreams: List?, val videoStreams: List?, val relatedStreams: List?, val subtitles: List?, val livestream: Boolean?, val proxyUrl: String?, val chapters: List? ){ constructor(): this("","","","","","","","","","",null,-1,-1,-1,-1, emptyList(), emptyList(), emptyList(), emptyList(), null,"", emptyList()) }