Skip to content

Instantly share code, notes, and snippets.

@smallest87
Created December 22, 2017 10:41
Show Gist options
  • Save smallest87/966a325fb1db68e887298485d2788ef0 to your computer and use it in GitHub Desktop.
Save smallest87/966a325fb1db68e887298485d2788ef0 to your computer and use it in GitHub Desktop.
package com.binangunkreatif.tutor.login;
/**
* Created by Julian on 18/12/2017.
*/
public class Contact {
String name, email, uname, pass;
public void setName(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return this.email;
}
public void setUname(String uname) {
this.uname = uname;
}
public String getUname() {
return this.uname;
}
public void setPass(String pass) {
this.pass = pass;
}
public String getPass() {
return this.pass;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment