Skip to content

Instantly share code, notes, and snippets.

@zerobell-lee
Last active February 8, 2020 07:07
Show Gist options
  • Save zerobell-lee/7889de69f091b03239910a94909f66d2 to your computer and use it in GitHub Desktop.
Save zerobell-lee/7889de69f091b03239910a94909f66d2 to your computer and use it in GitHub Desktop.
public class ManMember {
private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment