Files
scouthub/scouthub-magazzino-fe/src/app/core/models/notifica.model.ts
T
2026-08-01 03:12:23 +02:00

15 lines
280 B
TypeScript

export type TipoNotifica =
| 'MATERIALE_PROPOSTO'
| 'CATEGORIA_PROPOSTA'
| 'TIPO_EVENTO_PROPOSTO'
| 'LISTA_PROPOSTA';
export interface Notifica {
id: number;
tipo: TipoNotifica;
messaggio: string;
link: string | null;
letta: boolean;
dataCreazione: string;
}