diff --git a/user.h b/user.h index 0a73e21..0277d62 100644 --- a/user.h +++ b/user.h @@ -3,13 +3,14 @@ #include +// RĂ´les disponibles enum Role { ADMIN, PROF, STUDENT }; +// Structure pour un utilisateur struct User { std::string login; std::string password; Role role; }; -#endif - +#endif \ No newline at end of file