Commit a8aa0e71 authored by Zohten's avatar Zohten

added user model

parent 17e045fc
export default class User {
constructor(id_user, id_role, login, avatar, lastname, firstname, mail) {
this.id_user = id_user;
this.id_role = id_role;
this.login = login;
this.avatar = avatar;
this.lastname = lastname;
this.firstname = firstname;
this.mail = mail;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment