| 12345678910111213141516 |
- namespace Quadarax.Foundation.Core.Business.Processor.Enums;
- public enum ProcessStatusEnum : byte
- {
- Initial = 0,
- Pending = 1,
- Attached = 2,
- Failed = 3,
- Started = 4,
- Paused = 5,
- ProcessedSucc = 10,
- ProcessedFail = 11,
- Deleted = 100,
- ExpiredValidity = 20,
- ExpiredAttemts = 21,
- }
|