blob: 14007041144e7f17050e60fb90d66875ca6aee00 (
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.SearchAnime
class SearchAnimeResponse { //only kept the infos I didn't have and that were interesting to me.
@SerializedName("results")
private lateinit var results: List<SearchAnime>
fun getResults(): List<SearchAnime> {
return results
}
}
|