// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Jobs
{
///
/// Priority of a job or step
///
public enum Priority
{
///
/// Not specified
///
Unspecified = 0,
///
/// Lowest priority
///
Lowest = 1,
///
/// Below normal priority
///
BelowNormal = 2,
///
/// Normal priority
///
Normal = 3,
///
/// Above normal priority
///
AboveNormal = 4,
///
/// High priority
///
High = 5,
///
/// Highest priority
///
Highest = 6
}
}