Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active March 10, 2016 12:38
Show Gist options
  • Save brunokrebs/74757379f5515ebff7ad to your computer and use it in GitHub Desktop.
Save brunokrebs/74757379f5515ebff7ad to your computer and use it in GitHub Desktop.
package br.com.brunokrebs.model;
public class User {
private String name;
private String email;
private String password;
public User() { }
public User(String name, String email, String password) {
this.name = name;
this.email = email;
this.password = password;
}
public String getName() {
return name;
}
public String getEmail() {
return email;
}
public String getPassword() {
return password;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment