Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created November 9, 2020 06:28
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 blogcacanid/fbfa8c011030344db6d566312ad638f8 to your computer and use it in GitHub Desktop.
Save blogcacanid/fbfa8c011030344db6d566312ad638f8 to your computer and use it in GitHub Desktop.
user.js Authentication JWT Vue Lumen 7
export default class User {
constructor(username, email, password) {
this.username = username;
this.email = email;
this.password = password;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment