Files
crystall-punk-14/Content.Shared/Preferences/JobPriority.cs

13 lines
251 B
C#
Raw Permalink Normal View History

namespace Content.Shared.Preferences
{
public enum JobPriority
{
// These enum values HAVE to match the ones in DbJobPriority in Content.Server.Database
Never = 0,
Low = 1,
Medium = 2,
High = 3
}
}