joris

ApiInterface

Jul 11th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package com.bertho.tdashboard.rest;
  2.  
  3. import com.bertho.tdashboard.model.ChannelResponse;
  4. import com.bertho.tdashboard.model.VisitorResponse;
  5.  
  6. import retrofit2.Call;
  7. import retrofit2.http.GET;
  8.  
  9. public interface ApiInterface {
  10.     @GET("testing")
  11.     Call<VisitorResponse> getStatistic();
  12. }
Add Comment
Please, Sign In to add comment