11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
import { Tache } from './tache';
|
|
import { Team } from './team';
|
|
|
|
export interface ToDoList {
|
|
nom: string;
|
|
team: Team;
|
|
taches: Tache [];
|
|
id:number;
|
|
}
|
|
|
|
|