class User { constructor(username, email) { this.username = username; this.email = email; } } module.exports = User;