Skip to content

Instantly share code, notes, and snippets.

@shanmugasanthosh7
Created May 12, 2018 18:46
Show Gist options
  • Save shanmugasanthosh7/ad6edcd6ec18b45ee6a80bae37525b70 to your computer and use it in GitHub Desktop.
Save shanmugasanthosh7/ad6edcd6ec18b45ee6a80bae37525b70 to your computer and use it in GitHub Desktop.
Api endpoints
public interface IApiService
{
[Get("/posts/1")]
Task<Post> GetPost();
[Get("/todos/1")]
Task<ToDo> GetToDo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment