export default class UserDto {
_id;
email;
role
constructor(model) {
this._id = model._id;
this.email = model.email;
this.role = model.role;
}