function User() {
    this.email = "";
    this.password = "";
    this.name = "";
    this.rememberme = true;
}

User.prototype.email;
User.prototype.password;
User.prototype.name;
User.prototype.rememberme;
