package xyz.adjutor.aniki.presentation.model.manga import com.google.gson.annotations.SerializedName class SearchMangaResponse { //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 } }