Skip to content

Instantly share code, notes, and snippets.

@enginebai
Created September 13, 2020 23:07
Show Gist options
  • Save enginebai/cdea9948e8e9de54296889f21530f462 to your computer and use it in GitHub Desktop.
Save enginebai/cdea9948e8e9de54296889f21530f462 to your computer and use it in GitHub Desktop.
MovieHunt blog part3. model
data class MovieModel(
val id: String,
val posterPath: String?,
val title: String?,
val voteAverage: Float?,
val voteCount: Int?,
val releaseDate: String?,
val genreList: List<Genre>?,
val runtime: Int?
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment