Skip to content

Instantly share code, notes, and snippets.

@jsmuster
Created December 24, 2018 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsmuster/d3ead596a77a15b5dfd2b1585f7758bb to your computer and use it in GitHub Desktop.
Save jsmuster/d3ead596a77a15b5dfd2b1585f7758bb to your computer and use it in GitHub Desktop.
class CustomerModel
{
constructor(uid, first_name, last_name, email, zipcode, password)
{
this.uid = uid;
this.first_name = first_name;
this.last_name = last_name;
this.email = email;
this.zipcode = zipcode;
this.password = password;
}
}
module.exports = CustomerModel;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment