@akveo/nga-auth
Version:
@akveo/nga-auth
14 lines • 448 B
JavaScript
var NgaUser = (function () {
function NgaUser(id, email, password, rememberMe, terms, confirmPassword, fullName) {
this.id = id;
this.email = email;
this.password = password;
this.rememberMe = rememberMe;
this.terms = terms;
this.confirmPassword = confirmPassword;
this.fullName = fullName;
}
return NgaUser;
}());
export { NgaUser };
//# sourceMappingURL=user.js.map