aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/model/anime/AnimeResponse.kt
blob: e4336ce0a6b15f1fddc40ab3fe44052aa9872bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package xyz.adjutor.aniki.presentation.model.anime

import com.google.gson.annotations.SerializedName

class AnimeResponse { //only kept the infos I didn't have and that were interesting to me.

    @SerializedName("mal_id")
    var mal_id: Int? = null

    @SerializedName("rank")
    var rank: Int? = null //added for the search feature (detail)

    @SerializedName("synopsis")
    var synopsis: String? = null

}