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