LibreTube/app/src/main/java/com/github/libretube/obj/SearchResult.kt
2022-05-20 00:22:10 +02:00

12 lines
325 B
Kotlin

package com.github.libretube.obj
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
@JsonIgnoreProperties(ignoreUnknown = true)
data class SearchResult(
val items: MutableList<SearchItem>? = arrayListOf(),
val nextpage: String? = "",
val suggestion: String? = "",
val corrected: Boolean? = null
)