namespace Codex.Dal.Enums;
///
/// Represents the status of an agent execution.
///
public enum ExecutionStatus
{
///
/// Execution is currently in progress
///
Running,
///
/// Execution completed successfully
///
Completed,
///
/// Execution failed with an error
///
Failed,
///
/// Execution was cancelled by user or system
///
Cancelled
}