package xyz.adjutor.aniki.manga import com.google.gson.annotations.SerializedName //Content of the top field from the api of manga class Manga{ @SerializedName("url") var url: String? = null @SerializedName("title") var title: String? = null @SerializedName("rank") var rank: Int? = null @SerializedName("volumes") var volumes: Int? = null @SerializedName("chapters") var chapters: Int? = null @SerializedName("start_date") var start_date: String? = null @SerializedName("end_date") var end_date: String? = null @SerializedName("score") var score: Float? = null @SerializedName("image_url") var image_url: String? = null @SerializedName("synopsis") var synopsis: String? = null @SerializedName("background") var background: String? = null }