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

17 lines
383 B
TypeScript
Raw Normal View History

2026-07-14 10:51:04 +02:00
//=======================================
// File: index.ts
// Script per la gestione dei tipi utente
// author: "villari.andrea@libero.it"
// version: "1.0.0 2026-07-14"
//=======================================
export type Ruolo = "Dipendente" | "Referente Academy";
2026-07-13 23:42:26 +02:00
export interface Utente {
id: number;
nome: string;
cognome: string;
email: string;
ruolo: Ruolo;
}