creation-team incomplet

This commit is contained in:
Sana EL HIRI 2022-01-20 17:58:46 +01:00
parent 559be4fbd9
commit a344348b7a
11 changed files with 193 additions and 10 deletions

View file

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

3
src/app/models/team.ts Normal file
View file

@ -0,0 +1,3 @@
export interface Team {
nom : string;
}