mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
22 lines
501 B
TypeScript
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;
|
|
} |