Skip to content

Instantly share code, notes, and snippets.

@0x5d
Created September 26, 2015 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x5d/f7d245287da15c8eef2f to your computer and use it in GitHub Desktop.
Save 0x5d/f7d245287da15c8eef2f to your computer and use it in GitHub Desktop.
package com.mycompany.myfirstapp.model.weather;
public class WeatherInfo {
private Weather[] weather;
private String name;
public Weather[] getWeather() {
return weather;
}
public void setWeather(Weather[] weather) {
this.weather = weather;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment