This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/app-backend/models/objects/token.model.js
2021-12-01 05:52:34 +01:00

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;