blob: ed94b95e376b653531df05d058f7954e6e372c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package xyz.adjutor.aniki.presentation.model.response
import com.google.gson.annotations.SerializedName
import xyz.adjutor.aniki.presentation.model.SearchManga
class SearchMangaResponse { //only kept the infos I didn't have and that were interesting to me.
@SerializedName("results")
private lateinit var results: List<SearchManga>
fun getResults(): List<SearchManga> {
return results
}
}
|