src/app/core/http/dtos/post-audit.dto.ts
Properties |
contactPersons |
contactPersons:
|
Type : number[]
|
endDate |
endDate:
|
Type : string
|
name |
name:
|
Type : string
|
scope |
scope:
|
Type : number[]
|
startDate |
startDate:
|
Type : string
|
export interface PostAuditDto {
name: string;
startDate: string;
endDate: string;
scope: number[];
contactPersons: number[];
}