organizee-front/src/app/models/to-do-list.ts

7 lines
108 B
TypeScript

import { Team } from './team';
export interface ToDoList {
nom: string;
team: Team;
tache: string;
}