Sistemato magazzino

This commit is contained in:
Lorenzo Sanesi
2026-08-01 03:12:23 +02:00
parent de921abcd6
commit 0fdf395733
128 changed files with 9307 additions and 3076 deletions
@@ -0,0 +1,14 @@
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;
}