Files
doneit-web/src/app/models/Excludetask.ts
T
Peter Maquiran c7524089e5 add
2021-08-19 16:39:26 +01:00

19 lines
431 B
TypeScript

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