Skip to content

Instantly share code, notes, and snippets.

@gabriel-TheCode
Created June 23, 2021 10:48
Show Gist options
  • Select an option

  • Save gabriel-TheCode/1f5c9dc7d34f9fbc4302e26f9e969281 to your computer and use it in GitHub Desktop.

Select an option

Save gabriel-TheCode/1f5c9dc7d34f9fbc4302e26f9e969281 to your computer and use it in GitHub Desktop.
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