aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/model/SearchAnimeResponse.kt
blob: 1e20e2f962e3ba4e55d0fdb5f67911f1bd38a0d2 (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 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
    }
}