mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
12 lines
243 B
C#
12 lines
243 B
C#
namespace Content.Shared.Preferences
|
|
{
|
|
public enum JobPriority
|
|
{
|
|
// These enum values HAVE to match the ones in DbJobPriority in Server.Database.
|
|
Never = 0,
|
|
Low = 1,
|
|
Medium = 2,
|
|
High = 3
|
|
}
|
|
}
|