Téléverser les fichiers vers "/"

This commit is contained in:
2026-02-20 15:17:35 +00:00
parent 5d8d3707c1
commit cf3cb73dae
5 changed files with 62 additions and 0 deletions

6
Admin.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include "Admin.h"
Admin::Admin(int id, const std::string& username, const std::string& password)
: User(id, username, password) {
role = Role::ADMIN;
}