ente/lib/models/execution_states.dart

7 lines
69 B
Dart
Raw Normal View History

enum ExecutionState {
idle,
inProgress,
error,
successful;
}