10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
class Token {
|
|
constructor(id, email, profileImageUrl, role){
|
|
this.id = id;
|
|
this.email = email;
|
|
this.profileImageUrl = profileImageUrl;
|
|
this.role = role;
|
|
}
|
|
}
|
|
|
|
module.exports = Token;
|