Created
July 30, 2018 20:02
-
-
Save fpatelm/07daaafb011e754b20a954d8982e39ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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