13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
// entities/Auth.js
|
|
class AuthEntity {
|
|
constructor(uid, id, password, role, status) {
|
|
this.uid = uid;
|
|
this.id = id;
|
|
this.password = password;
|
|
this.role = role;
|
|
this.status = status;
|
|
}
|
|
}
|
|
|
|
module.exports = AuthEntity;
|