Created
November 28, 2017 11:18
-
-
Save ziginsider/f1db847f923ccac8088813231af3f1f0 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
| public class User { | |
| String uid, name, email; | |
| public User() { | |
| } | |
| public User(String uid, String name, String email) { | |
| this.uid = uid; | |
| this.name = name; | |
| this.email = email; | |
| } | |
| public String getUid() { | |
| return uid; | |
| } | |
| public void setUid(String uid) { | |
| this.uid = uid; | |
| } | |
| public String getName() { | |
| return name; | |
| } | |
| public void setName(String name) { | |
| this.name = name; | |
| } | |
| public String getEmail() { | |
| return email; | |
| } | |
| public void setEmail(String email) { | |
| this.email = email; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment