namespace API.Schema.Jobs;

public enum JobState
{
    Waiting,
    Running,
    Completed
}