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