Skip to content

Instantly share code, notes, and snippets.

@yogacp
Created June 28, 2018 09:03
Show Gist options
  • Save yogacp/923c046f50067b1b9f0dabecc7b8b866 to your computer and use it in GitHub Desktop.
Save yogacp/923c046f50067b1b9f0dabecc7b8b866 to your computer and use it in GitHub Desktop.
Models for movie data
data class Movies(
var genres: String? = null,
var title: String? = null,
var release_date: String? = null,
var detailMovies: DetailMovies? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment