blob: 00b0dce150d99e4b6ce838354c93476063c34f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package xyz.adjutor.aniki.manga
import com.google.gson.annotations.SerializedName
class RestMangaResponse{ //only kept the infos I didn't have and that were interesting to me.
@SerializedName("mal_id")
var mal_id: Int? = null
@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
}
|