Skip to content

Instantly share code, notes, and snippets.

@PondThaitay
Created December 1, 2016 19:00
Show Gist options
  • Save PondThaitay/6f510ed897bba84e852401983af31c08 to your computer and use it in GitHub Desktop.
Save PondThaitay/6f510ed897bba84e852401983af31c08 to your computer and use it in GitHub Desktop.
public class UserModel {
private String firstName;
private String lastName;
private int age;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
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