File

src/app/core/http/dtos/audit.dto.ts

Index

Properties

Properties

cancellationContactPerson
cancellationContactPerson: ContactPerson
Type : ContactPerson
cancellationDate
cancellationDate: string
Type : string
cancellationReason
cancellationReason: string
Type : string
contactPersons
contactPersons: ContactPerson[]
Type : ContactPerson[]
creationDate
creationDate: string
Type : string
endDate
endDate: string
Type : string
id
id: number
Type : number
name
name: string
Type : string
scope
scope: FacCrit[]
Type : FacCrit[]
startDate
startDate: string
Type : string
status
status: AuditStatus
Type : AuditStatus
import { FacCrit } from '../../data/models/faccrit.model';
import { ContactPerson } from '../../data/models/contact-person.model';
import { AuditStatus } from '../../data/models/audit.model';

export interface AuditDto {
  id: number;
  name: string;
  startDate: string;
  endDate: string;
  creationDate: string;
  status: AuditStatus;
  scope: FacCrit[];
  contactPersons: ContactPerson[];
  cancellationDate: string;
  cancellationReason: string;
  cancellationContactPerson: ContactPerson;
}

result-matching ""

    No results matching ""