Tranga/API/Schema/Jobs/JobState.cs
2024-12-14 21:53:29 +01:00

8 lines
95 B
C#

namespace API.Schema.Jobs;
public enum JobState
{
Waiting,
Running,
Completed
}