Skip to content

Instantly share code, notes, and snippets.

@vyo
Created June 8, 2017 12:57
Show Gist options
  • Save vyo/4ee1ee14be8b1a3549ea88cde371450f to your computer and use it in GitHub Desktop.
Save vyo/4ee1ee14be8b1a3549ea88cde371450f to your computer and use it in GitHub Desktop.
public class Echo {
private String echo;
public Echo(String echo) {
this.echo = echo;
}
public String getEcho() {
return echo;
}
public void setEcho(String echo) {
this.echo = echo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment