organizee-front/src/app/models/to-do-list.ts
2022-02-15 15:03:35 +01:00

11 lines
159 B
TypeScript

import { Tache } from './tache';
import { Team } from './team';
export interface ToDoList {
nom: string;
team: Team;
taches: Tache [];
id:number;
}