MeteoSystem/app/src/main/java/cc/pogoda/mobile/meteosystem/type/AllStationsReceivedEvent.java

19 wiersze
398 B
Java

package cc.pogoda.mobile.meteosystem.type;
import androidx.annotation.NonNull;
import java.util.List;
public class AllStationsReceivedEvent {
List<WeatherStation> stations;
public AllStationsReceivedEvent(@NonNull List<WeatherStation> stations) {
this.stations = stations;
}
@NonNull
public List<WeatherStation> getStations(){
return this.stations;
}
}