Merge branch 'dev' into blandine

This commit is contained in:
AlineRinquin 2022-01-21 09:49:16 +01:00 committed by GitHub
commit 219636bc75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 654 additions and 17 deletions

View file

@ -1,9 +1,12 @@
export interface Membre {
prenom : string;
nom: string;
prenom: string;
email: string;
password: string;
dateNaissance: Date;
profil: boolean;
roleList: string[];
passwordConfirm: string;
roleList: string[];
}