LibreTube/app/src/main/java/com/github/libretube/obj/SearchResult.kt

12 lines
325 B
Kotlin
Raw Normal View History

2022-02-01 21:22:06 +05:30
package com.github.libretube.obj
2021-12-28 23:41:51 +05:30
2022-02-08 21:04:42 +05:30
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
2021-12-28 23:41:51 +05:30
2022-02-08 21:04:42 +05:30
@JsonIgnoreProperties(ignoreUnknown = true)
2021-12-28 23:41:51 +05:30
data class SearchResult(
2022-05-15 16:42:46 +05:30
val items: MutableList<SearchItem>? = arrayListOf(),
2022-05-20 03:52:10 +05:30
val nextpage: String? = "",
val suggestion: String? = "",
2021-12-28 23:41:51 +05:30
val corrected: Boolean? = null
)