mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-24 00:00:13 +01:00
8 lines
95 B
C#
8 lines
95 B
C#
|
namespace API.Schema.Jobs;
|
|||
|
|
|||
|
public enum JobState
|
|||
|
{
|
|||
|
Waiting,
|
|||
|
Running,
|
|||
|
Completed
|
|||
|
}
|