Merge branch 'dev' into blandine
This commit is contained in:
commit
219636bc75
32 changed files with 654 additions and 17 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;
|
||||
}
|
||||
|
|
@ -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
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;
|
||||
}
|
||||
3
src/app/models/team.ts
Normal file
3
src/app/models/team.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export interface Team {
|
||||
nom : string;
|
||||
}
|
||||
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