MeteoSystem/app/src/main/java/cc/pogoda/mobile/pogodacc/web/StationDataConsumer.java

15 wiersze
480 B
Java

package cc.pogoda.mobile.pogodacc.web;
import cc.pogoda.mobile.pogodacc.type.web.ListOfStationData;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;
public interface StationDataConsumer {
@GET("meteo_backend/stationData/")
Call<ListOfStationData> getDataForStation(@Query("station")String station,
@Query("from")long from,
@Query("to")long to);
}