Téléverser les fichiers vers "/"
This commit is contained in:
8
Student.cpp
Normal file
8
Student.cpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "Student.h"
|
||||
|
||||
Student::Student(int id, const std::string& username, const std::string& password, const std::string& email)
|
||||
: User(id, username, password), email(email) {
|
||||
role = Role::STUDENT;
|
||||
}
|
||||
|
||||
std::string Student::getEmail() const { return email; }
|
||||
Reference in New Issue
Block a user