Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package info.androidboss.retrofit.appinterface;
- import java.util.List;
- import info.androidboss.retrofit.model.Movie;
- import retrofit2.Call;
- import retrofit2.http.GET;
- /**
- * Created by RIFAN on 22-Mar-17.
- */
- public interface RetroFitApiInterface {
- @GET("movies.json")
- Call<List<Movie>> getMovie();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement