JobPriority.cs 251 B

123456789101112
  1. namespace Content.Shared.Preferences
  2. {
  3. public enum JobPriority
  4. {
  5. // These enum values HAVE to match the ones in DbJobPriority in Content.Server.Database
  6. Never = 0,
  7. Low = 1,
  8. Medium = 2,
  9. High = 3
  10. }
  11. }