mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
16 lines
416 B
TypeScript
16 lines
416 B
TypeScript
|
|
export interface ExpedienteFullTaskWorkflowInstanceDataFields {
|
|
FolderID: number;
|
|
Sender: string;
|
|
Subject: string;
|
|
Status: string;
|
|
}
|
|
|
|
export interface ExpedienteFullTask {
|
|
serialNumber: string;
|
|
taskStartDate: string;
|
|
workflowDisplayName: string;
|
|
activityInstanceName: string;
|
|
totalDocuments: number;
|
|
workflowInstanceDataFields: ExpedienteFullTaskWorkflowInstanceDataFields;
|
|
} |