Skip to content

Instantly share code, notes, and snippets.

@kelmer44
Last active May 14, 2020 14:56
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 kelmer44/35c327bbd70f2fdecdcb0b335eb08346 to your computer and use it in GitHub Desktop.
Save kelmer44/35c327bbd70f2fdecdcb0b335eb08346 to your computer and use it in GitHub Desktop.
data class ApiResponse(
val photos: PhotoListResponse,
val stat: String
)
data class PhotoListResponse(
val page: Int,
val pages: Int,
val perPage: Int,
val total: Int,
val photo: List<PhotoEntity>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment