UserEntity.js 239 B

123456789101112
  1. class UserEntity {
  2. constructor(){
  3. this.userId = ''
  4. this.userName = ''
  5. this.password = ''
  6. this.avatarUrl = ''
  7. this.description = ''
  8. this.createdAt = ''
  9. }
  10. }
  11. module.exports = UserEntity