Last active
March 10, 2016 12:38
-
-
Save brunokrebs/74757379f5515ebff7ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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