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; }