16 lines
383 B
TypeScript
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;
|
|
}
|
|
|