aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/manga/RestMangaResponse.kt
blob: 7a4aff9ab91944392344785dabd530e682f4bf88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package xyz.adjutor.aniki.manga

import com.google.gson.annotations.SerializedName

class RestMangaResponse{ //only kept the infos I didnt have and that were interresting to me.

    @SerializedName("chapters")
    var chapters: Int? = null
    @SerializedName("synopsis")
    var synopsis: String? = null
    @SerializedName("background")
    var background: String? = null //a bit of background story about the manga

}