UNPKG

@raphaeldeveloper/whoiam.domain

Version:

Project with domain rules about user authentication.

7 lines 184 B
module.exports = class User { constructor(userName, email, password) { this.userName = userName; this.email = email; this.password = password; } }