/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package models;
/**
*
* @author hp
*/
public class User {
private String email, passwd;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPasswd() {
return passwd;
}
public void setPasswd(String passwd) {
this.passwd = passwd;
}
}