Files
2025-10-30 03:33:45 +00:00

14 lines
309 B
Swift

import Foundation
public enum ExecutionStatus: String, CustomStringConvertible {
case waiting = "waiting"
case processing = "processing"
case completed = "completed"
case failed = "failed"
case scheduled = "scheduled"
public var description: String {
return rawValue
}
}