Skip to content

Instantly share code, notes, and snippets.

@Raouf25
Created April 3, 2020 09:56
Show Gist options
  • Save Raouf25/e34b83bd71c90b0f402b16d907b45158 to your computer and use it in GitHub Desktop.
Save Raouf25/e34b83bd71c90b0f402b16d907b45158 to your computer and use it in GitHub Desktop.
City POJO
public class City {
private String name;
private String code;
public City() {
}
public City(String name, String code) {
this.name = name;
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment