Created
August 3, 2020 14:09
-
-
Save enginebai/2c3eaa7c9799476834f7d15c2d713cca to your computer and use it in GitHub Desktop.
MovieHunt blog part2. data class for response
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 MovieListResponse( | |
@SerializedName("id") | |
val id: String, | |
@SerializedName("poster_path") | |
val posterPath: String?, | |
@SerializedName("title") | |
val title: String?, | |
... | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment