src/app/core/data/models/audit.model.ts
Properties |
|
| contactPersons |
contactPersons:
|
Type : ContactPerson[]
|
| Optional |
| creationDate |
creationDate:
|
Type : number
|
| Optional |
| endDate |
endDate:
|
Type : number
|
| Optional |
| id |
id:
|
Type : number
|
| Optional |
| name |
name:
|
Type : string
|
| scope |
scope:
|
Type : FacCrit[]
|
| startDate |
startDate:
|
Type : number
|
| status |
status:
|
Type : AuditStatus
|
import { ContactPerson } from './contact-person.model';
import { FacCrit } from './faccrit.model';
export enum AuditStatus {
Planned = 'OPEN',
Active = 'ACTIVE',
Finished = 'FINISHED',
Cancelled = 'CANCELLED',
}
export interface Audit {
id?: number;
status: AuditStatus;
creationDate?: number;
name: string;
startDate: number;
endDate?: number;
contactPersons?: ContactPerson[];
scope: FacCrit[];
}