organizee-front/src/app/interfaces/todo.ts
2022-02-15 15:03:35 +01:00

7 lines
107 B
TypeScript

export interface Todo {
id : number,
texte : string,
etat: boolean,
// todoListId: number // FK
}