Skip to content

Instantly share code, notes, and snippets.

@florent37
Created December 11, 2018 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florent37/5a7e093d5ede5e6ed7011d1fdc01ad79 to your computer and use it in GitHub Desktop.
Save florent37/5a7e093d5ede5e6ed7011d1fdc01ad79 to your computer and use it in GitHub Desktop.
class Movie {
@SerializedName("Title")
var title : String = ""
@SerializedName("Year")
var year : String = ""
@SerializedName("ImdbID")
var imdbID : String = ""
@SerializedName("Type")
var type : String = ""
@SerializedName("Poster")
var poster : String = ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment