Skip to content

Instantly share code, notes, and snippets.

@Rasalexman
Last active January 19, 2020 01: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 Rasalexman/5230bb7a21f6e22366a8fa4e128a9868 to your computer and use it in GitHub Desktop.
Save Rasalexman/5230bb7a21f6e22366a8fa4e128a9868 to your computer and use it in GitHub Desktop.
api interface for retrofit
interface ISimpleApi {
@GET("data/list")
suspend fun getListData(
@Query("page") page: Int
): List<SomeRemoteModel>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment