wip
This commit is contained in:
9
packages/automation/domain/entities/StepExecution.ts
Normal file
9
packages/automation/domain/entities/StepExecution.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { StepId } from '../value-objects/StepId';
|
||||
|
||||
export interface StepExecution {
|
||||
stepId: StepId;
|
||||
startedAt: Date;
|
||||
completedAt?: Date;
|
||||
success: boolean;
|
||||
error?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user