tracking files

This commit is contained in:
Hedi MJID 2022-02-26 14:19:27 +01:00
parent cce97527b5
commit 9b3c02f6c1
73 changed files with 1671 additions and 479 deletions

5
src/app/models/mail.ts Normal file
View file

@ -0,0 +1,5 @@
export interface Mail {
recipient: string;
subject: string;
message: string;
}

View file

@ -2,6 +2,8 @@ import { Membre } from './membre';
import { Team } from './team';
export interface Menu {
libelle: string;
dateMenu: Date;
dateMenu: string;
repasMidi: string;
repasSoir: string;
id: number;
}