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

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