import { ActionType } from './ActionType'; import { Actor } from './Actor'; import { BaseModel } from './base'; export interface ActionHistory extends BaseModel { TaskCode: string; Workflow: string; Description: string; FromStage: string; ToStage?: string; Actor: Actor; ActionType: ActionType; Files: string[]; ActionName?: string; }