MeteoSystem/app/src/main/java/cc/pogoda/mobile/meteosystem/web/StationListConsumer.java

12 wiersze
291 B
Java
Czysty Zwykły widok Historia

2021-12-10 10:21:06 +00:00
package cc.pogoda.mobile.meteosystem.web;
2020-12-16 19:26:53 +00:00
2021-12-10 10:21:06 +00:00
import cc.pogoda.mobile.meteosystem.type.web.ListOfAllStations;
2020-12-16 19:26:53 +00:00
import retrofit2.Call;
import retrofit2.http.GET;
public interface StationListConsumer {
@GET("meteo_backend/listOfAllStations/")
Call<ListOfAllStations> getAllStations();
}