Guest User

Untitled

a guest
Jan 17th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. using System.Threading.Tasks;
  2. using Refit;
  3.  
  4. namespace RefitXFSample
  5. {
  6. public interface IMakeUpApi
  7. {
  8. [Get("/api/v1/products.json?brand=maybelline")]
  9. Task<string> GetMakeUps();
  10. }
  11. }
Add Comment
Please, Sign In to add comment