Skip to content

Instantly share code, notes, and snippets.

@fpatelm
Created July 30, 2018 20:02
Show Gist options
  • Save fpatelm/07daaafb011e754b20a954d8982e39ef to your computer and use it in GitHub Desktop.
Save fpatelm/07daaafb011e754b20a954d8982e39ef to your computer and use it in GitHub Desktop.
public class StationReply {
String number;
String name;
String address;
String latitude;
String longitude;
public String getNumber() {
return number;
}
public String getName() {
return name;
}
public String getAddress() {
return address;
}
public String getLatitude() {
return latitude;
}
public String getLongitude() {
return longitude;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment