esameits24-26frontend/src/types/index.ts

12 lines
165 B
TypeScript
Raw Normal View History

2026-07-13 23:42:26 +02:00
export type Ruolo = "Operatore" | "Amministratore";
export interface Utente {
id: number;
nome: string;
cognome: string;
email: string;
ruolo: Ruolo;
}