generazione applicazione e entita

This commit is contained in:
2025-12-10 17:19:16 +01:00
parent e4b8486f4b
commit 9ad99bd05f
363 changed files with 36699 additions and 44 deletions

View File

@@ -0,0 +1,18 @@
import { type TipoConferma } from '@/shared/model/enumerations/tipo-conferma.model';
import { type IUtenteApp } from '@/shared/model/utente-app.model';
export interface IConferma {
id?: number;
motivoConferma?: string | null;
tipoConferma?: keyof typeof TipoConferma | null;
confermataDa?: IUtenteApp | null;
}
export class Conferma implements IConferma {
constructor(
public id?: number,
public motivoConferma?: string | null,
public tipoConferma?: keyof typeof TipoConferma | null,
public confermataDa?: IUtenteApp | null,
) {}
}