Skip to content

Instantly share code, notes, and snippets.

@fuchodeveloper
Created April 22, 2018 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuchodeveloper/6d29cf02a1f3aa56ed54cf2a2612d9fc to your computer and use it in GitHub Desktop.
Save fuchodeveloper/6d29cf02a1f3aa56ed54cf2a2612d9fc to your computer and use it in GitHub Desktop.
Hello model class
package hello;
public class Hello {
private String firstName;
private String lastName;
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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment