aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/model/anime/SearchAnimeResponse.kt
blob: d04aa670c8f385017b9f1e0ba41f6bb3872a31e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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<SearchAnime>

    fun getResults(): List<SearchAnime> {
        return results
    }
}