Advertisement
prophet173

Plot

Feb 18th, 2020
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.29 KB | None | 0 0
  1. @Parcelize
  2. data class Plot(
  3.         @SerializedName("rating") override var rating: Map<String, Rating>?,
  4.         @SerializedName("plots") override var plots: GenericList<Plot>?,
  5.         ....
  6.         @SerializedName("languages") override var languages: GenericList<Language>?,
  7. ) : AbsPlot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement