package xyz.adjutor.aniki.topanime import com.google.gson.annotations.SerializedName class RestTopAnimeResponse { @SerializedName("top") var top: List? = null fun getResults(): List { return top!! } }