This commit is contained in:
Peter Maquiran
2021-08-19 16:39:26 +01:00
parent 29add3f3d5
commit c7524089e5
9 changed files with 25 additions and 15 deletions
+13 -4
View File
@@ -1,10 +1,19 @@
export class Excludetask{
serialNumber: any;
export interface Attachment {
SourceId: string;
ApplicationId: number;
}
export interface AttachmentList {
ProcessInstanceID?: string;
Attachments?: Attachment[];
}
export interface Excludetask {
serialNumber: string;
action: string;
ActionTypeId: any;
ActionTypeId?: number;
dataFields: {
ReviewUserComment?: string,
Note?: any
}
AttachmentList?: any
FolderId?: number;
AttachmentList?: AttachmentList | any;
}