15 lines
280 B
TypeScript
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;
|
|
}
|