package com.newinternaldsp.Entity;

public class Geo{
    public int type;
    public double lat;
    public double lon;
    public String country;
    public int utcoffset;
	public Geo(int type, double lat, double lon, String country, int utcoffset) {
		super();
		this.type = type;
		this.lat = lat;
		this.lon = lon;
		this.country = country;
		this.utcoffset = utcoffset;
	}
	public int getType() {
		return type;
	}
	public void setType(int type) {
		this.type = type;
	}
	public double getLat() {
		return lat;
	}
	public void setLat(double lat) {
		this.lat = lat;
	}
	public double getLon() {
		return lon;
	}
	public void setLon(double lon) {
		this.lon = lon;
	}
	public String getCountry() {
		return country;
	}
	public void setCountry(String country) {
		this.country = country;
	}
	public int getUtcoffset() {
		return utcoffset;
	}
	public void setUtcoffset(int utcoffset) {
		this.utcoffset = utcoffset;
	}
    
    
}
