aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/manga/Manga.kt
blob: baba9f55fe9eec224e10499036d637f16d4b242a (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 Manga{ //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

}