diff --git a/project/src/model/metier/Utilisateur.php b/project/src/model/metier/Utilisateur.php new file mode 100644 index 0000000..9cbdbd1 --- /dev/null +++ b/project/src/model/metier/Utilisateur.php @@ -0,0 +1,25 @@ +email = $email; + $this->motDePasse = $motDePasse; + } + + public function getEmail(): string + { + return $this->email; + } + + public function getMotDePasse(): string + { + return $this->motDePasse; + } +} \ No newline at end of file