mirror of
https://github.com/C9Glax/tranga.git
synced 2025-04-14 12:23:17 +02:00
13 lines
260 B
C#
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
|
|
} |