Merge branch 'dev' into sana
This commit is contained in:
commit
a650aaf3d8
23 changed files with 453 additions and 15 deletions
8
src/app/models/contact.ts
Normal file
8
src/app/models/contact.ts
Normal 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
10
src/app/models/menu.ts
Normal 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;
|
||||
}
|
||||
7
src/app/models/to-do-list.ts
Normal file
7
src/app/models/to-do-list.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { Team } from './team';
|
||||
|
||||
export interface ToDoList {
|
||||
nom: string;
|
||||
team: Team;
|
||||
tache: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue