Created
September 13, 2020 23:07
-
-
Save enginebai/cdea9948e8e9de54296889f21530f462 to your computer and use it in GitHub Desktop.
MovieHunt blog part3. model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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