Sistemato magazzino
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user