blob: 0c0adb479328d18a7897365961c1d80b9c3c20aa (
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.TopAnime
class TopAnimeResponse {
@SerializedName("top")
var top: List<TopAnime>? = null
fun getResults(): List<TopAnime> {
return top!!
}
}
|