generazione applicazione e entita
This commit is contained in:
18
src/main/webapp/app/shared/model/conferma.model.ts
Normal file
18
src/main/webapp/app/shared/model/conferma.model.ts
Normal 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,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user