Files
doneit-web/src/app/models/Excludetask.ts
T
Peter Maquiran a26f7c4f75 fix aparecer
2023-07-25 13:47:48 +01:00

22 lines
501 B
TypeScript

export interface Attachment {
SourceId: string;
ApplicationId: number;
}
export interface AttachmentList {
ProcessInstanceID?: string;
Attachments?: Attachment[];
DraftIds?: any
}
export interface Excludetask {
serialNumber: string;
action: string;
ActionTypeId?: number;
dataFields: {
ReviewUserComment?: string,
Note?: any
InstanceIDNew?: any
DraftIds?: any
}
FolderId?: number;
AttachmentList?: AttachmentList | any;
}