mise en place du html et lien vers le back de repertoire

This commit is contained in:
AlineRinquin 2022-01-20 17:30:17 +01:00
parent 68e1df8eb7
commit 4a55d75da7
20 changed files with 221 additions and 14 deletions

View file

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

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

View file

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