7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
import { Team } from './team';
|
|
|
|
export interface ToDoList {
|
|
nom: string;
|
|
team: Team;
|
|
tache: string;
|
|
}
|