Merge pull request #26 from AlineRinquin/isa

Isa
This commit is contained in:
AlineRinquin 2022-02-15 15:04:50 +01:00 committed by GitHub
commit fea0ac9524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 204 additions and 119 deletions

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

@ -0,0 +1,10 @@
import { ToDoList } from './to-do-list';
export interface Tache {
id : number,
texte: string,
etat : boolean,
editing : boolean
}

View file

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