aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/model/response/TopMangaResponse.kt
blob: 091984ce1b1c3c8608b34abe66bd483a637a8781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package xyz.adjutor.aniki.presentation.model.response

import com.google.gson.annotations.SerializedName
import xyz.adjutor.aniki.presentation.model.TopManga

class TopMangaResponse {

    @SerializedName("top")
    private lateinit var top: List<TopManga>

    fun getResults(): List<TopManga> {
        return top
    }
}