Files
TP-C---Not-/user.h
2026-02-20 14:31:29 +00:00

14 lines
175 B
C++

#ifndef USER_H
#define USER_H
#include <string>
enum Role { ADMIN, PROF, STUDENT };
struct User {
std::string login;
std::string password;
Role role;
};
#endif