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

@ -0,0 +1,8 @@
export interface Contact {
nom: string;
prenom: string;
telephone: string;
email: string;
adresse: string;
dateNaissance: Date;
}

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[];
}

10
src/app/models/menu.ts Normal file
View file

@ -0,0 +1,10 @@
import { Membre } from './membre';
import { Team } from './team';
export interface Menu {
libelle: string;
dateMenu: Date;
membre: Membre;
team: Team;
validationProposition: boolean;
}

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

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

View file

@ -0,0 +1,7 @@
import { Team } from './team';
export interface ToDoList {
nom: string;
team: Team;
tache: string;
}