12 lines
165 B
TypeScript
12 lines
165 B
TypeScript
|
|
export type Ruolo = "Operatore" | "Amministratore";
|
||
|
|
|
||
|
|
|
||
|
|
export interface Utente {
|
||
|
|
id: number;
|
||
|
|
nome: string;
|
||
|
|
cognome: string;
|
||
|
|
email: string;
|
||
|
|
ruolo: Ruolo;
|
||
|
|
}
|
||
|
|
|