aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/model/TopAnimeResponse.kt
blob: 95d39d6d91b8b126c48e92d376e78aac19bf168b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package xyz.adjutor.aniki.presentation.model

import com.google.gson.annotations.SerializedName

class TopAnimeResponse {

    @SerializedName("top")
    var top: List<TopAnime>? = null

    fun getResults(): List<TopAnime> {
        return top!!
    }
}