package xyz.adjutor.aniki.presentation.model.anime import com.google.gson.annotations.SerializedName class SearchAnimeResponse { //only kept the infos I didn't have and that were interesting to me. @SerializedName("results") private lateinit var results: List fun getResults(): List { return results } }