Merge branch 'dev' into cecile
This commit is contained in:
commit
6504d28c4b
82 changed files with 3557 additions and 2862 deletions
|
|
@ -1,5 +1,6 @@
|
|||
export interface Contact {
|
||||
id: string;
|
||||
couleur: string;
|
||||
nom: string;
|
||||
prenom: string;
|
||||
telephone: string;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,4 @@ import { Team } from './team';
|
|||
export interface Menu {
|
||||
libelle: string;
|
||||
dateMenu: Date;
|
||||
membre: Membre;
|
||||
team: Team;
|
||||
validationProposition: boolean;
|
||||
}
|
||||
|
|
|
|||
10
src/app/models/tache.ts
Normal file
10
src/app/models/tache.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
import { ToDoList } from './to-do-list';
|
||||
|
||||
|
||||
export interface Tache {
|
||||
id : number,
|
||||
texte: string,
|
||||
etat : boolean,
|
||||
editing : boolean
|
||||
}
|
||||
|
|
@ -1,7 +1,11 @@
|
|||
import { Tache } from './tache';
|
||||
import { Team } from './team';
|
||||
|
||||
export interface ToDoList {
|
||||
nom: string;
|
||||
team: Team;
|
||||
tache: string;
|
||||
taches: Tache [];
|
||||
id:number;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue