Advertisement
rama_astadipati

RetrofitApiInterface

Jun 24th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package info.androidboss.retrofit.appinterface;
  2.  
  3. import java.util.List;
  4.  
  5. import info.androidboss.retrofit.model.Movie;
  6. import retrofit2.Call;
  7. import retrofit2.http.GET;
  8.  
  9. /**
  10. * Created by RIFAN on 22-Mar-17.
  11. */
  12.  
  13. public interface RetroFitApiInterface {
  14. @GET("movies.json")
  15. Call<List<Movie>> getMovie();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement