Skip to content

Instantly share code, notes, and snippets.

@yogacp
Created June 28, 2018 09:05
Show Gist options
  • Save yogacp/4ac07b1885bf033115cb853ae336643c to your computer and use it in GitHub Desktop.
Save yogacp/4ac07b1885bf033115cb853ae336643c to your computer and use it in GitHub Desktop.
Models for detail movies data
data class DetailMovies(
var country: String? = null,
var language: String? = null,
var directed_by: String? = null,
var produced_by: String? = null,
var overview: String? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment