mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 06:00:23 +00:00
17 lines
No EOL
322 B
C#
17 lines
No EOL
322 B
C#
namespace Roadie.Library.Enums
|
|
{
|
|
public enum Statuses : short
|
|
{
|
|
Ok = 0,
|
|
New = 1,
|
|
Complete = 2,
|
|
Incomplete = 3,
|
|
Missing = 4,
|
|
Wishlist = 5,
|
|
AdminRemoved = 6,
|
|
Expired = 7,
|
|
ReadyToMigrate = 8,
|
|
Migrated = 9,
|
|
Deleted = 99
|
|
}
|
|
} |