Created
June 23, 2021 10:48
-
-
Save gabriel-TheCode/1f5c9dc7d34f9fbc4302e26f9e969281 to your computer and use it in GitHub Desktop.
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 BlogObjectResponse( | |
| @SerializedName("pk") | |
| @Expose | |
| var id: Int, | |
| @SerializedName("title") | |
| @Expose | |
| var title: String, | |
| @SerializedName("body") | |
| @Expose | |
| var body: String, | |
| @SerializedName("category") | |
| @Expose | |
| var category: String, | |
| @SerializedName("image") | |
| @Expose | |
| var image: String | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment