package application;

public class userModel {
	private Integer id;
	private String name;
	private Integer age;
	private String city;
	public userModel(Integer id, String name, Integer age, String city) {
		this.setId(id);
		this.setName(name);
		this.setAge(age);
		this.setCity(city);
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public Integer getAge() {
		return age;
	}
	public void setAge(Integer age) {
		this.age = age;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getCity() {
		return city;
	}
	public void setCity(String city) {
		this.city = city;
	}

}
