vps/entities/userEntity.js

14 lines
282 B
JavaScript

// entities/User.js
class UserEntity {
constructor(uid,auth_uid, name, email, address, phone) {
this.uid = uid;
this.auth_uid = auth_uid;
this.name = name;
this.email = email;
this.address = address;
this.phone = phone;
}
}
module.exports = UserEntity;