1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-07-05 10:24:17 +02:00
Files
Tranga/API/Schema/Jobs/JobState.cs

13 lines
260 B
C#

namespace API.Schema.Jobs;
public enum JobState : byte
{
//Values 0-63 Preparation Stages
Waiting = 0,
//64-127 Running Stages
Running = 64,
//128-191 Completion Stages
Completed = 128,
//192-255 Error stages
Failed = 192
}