aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/xyz/adjutor/aniki/topanime/TopAnime.kt
blob: 1764878d271ef85d5d23c80e90f9eff03318ba04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package xyz.adjutor.aniki.topanime

import com.google.gson.annotations.SerializedName

//Content of the top field from the api of top anime
class TopAnime{

    @SerializedName("mal_id")
    var mal_id: Int? = null
    @SerializedName("rank")
    var rank: Int? = null
    @SerializedName("title")
    var title: String? = null
    @SerializedName("url")
    var url: String? = null
    @SerializedName("episodes")
    var episodes: 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

}