Back to project page UK-Weather-repo.
The source code is released under:
Apache License
If you think the Android project UK-Weather-repo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.haringeymobile.ukweather.data.objects; /*from ww w .j a va 2 s . c om*/ import com.google.gson.annotations.SerializedName; public class CityInfo { @SerializedName("coord") private Coordinates coordinates; @SerializedName("country") private String country; @SerializedName("id") private int cityId; @SerializedName("name") private String cityName; public String getCountry() { return country; } public String getCityName() { return cityName; } }