esameits24-26frontend/src/types/index.ts
AV77web e311d8ace3
All checks were successful
Deploy to VPS / build (push) Successful in 22s
Deploy to VPS / deploy (push) Successful in 26s
correzione dei dati lato frontend
2026-07-14 10:51:04 +02:00

16 lines
383 B
TypeScript

//=======================================
// 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";
export interface Utente {
id: number;
nome: string;
cognome: string;
email: string;
ruolo: Ruolo;
}