You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
667 B
40 lines
667 B
package org.telegram.structure;
|
|
|
|
/**
|
|
* @author Ruben Bermudez
|
|
* @version 1.0
|
|
* @brief Weather Alert representation
|
|
* @date 23 of July of 2015
|
|
*/
|
|
public class WeatherAlert {
|
|
private int id;
|
|
private int userId;
|
|
private int cityId;
|
|
|
|
public WeatherAlert() {
|
|
}
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public int getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(int userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public int getCityId() {
|
|
return cityId;
|
|
}
|
|
|
|
public void setCityId(int cityId) {
|
|
this.cityId = cityId;
|
|
}
|
|
}
|
|
|