blob: 8d801d6dc66ad98b2fb2846f2a2a2fda46a50ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package xyz.adjutor.aniki.anime
import com.google.gson.annotations.SerializedName
class AnimeResponse { //only kept the infos I didn't have and that were interesting to me.
@SerializedName("mal_id")
var mal_id: Int? = null
@SerializedName("synopsis")
var synopsis: String? = null
}
|