Skip to content

Instantly share code, notes, and snippets.

@sharmadhiraj
Last active August 2, 2018 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharmadhiraj/843171aaa5430d0b8a757f371dfb8aac to your computer and use it in GitHub Desktop.
Save sharmadhiraj/843171aaa5430d0b8a757f371dfb8aac to your computer and use it in GitHub Desktop.
Android Paging LIbrary
data class Response(
@SerializedName("articles") val news: List<News>
)
data class News(
val title: String,
@SerializedName("urlToImage") val image: String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment