42 lines
637 B
C#
42 lines
637 B
C#
namespace Gremlin_BlazorServer.Data.EntityClasses
|
|
{
|
|
public abstract class Enums
|
|
{
|
|
public enum Status : byte
|
|
{
|
|
Deleted = 0,
|
|
Archived = 1,
|
|
Obsolete = 2,
|
|
DescriptionUpdated = 3,
|
|
StatusUpdated = 4,
|
|
Active = 11,
|
|
New = 12, //implies also 'Active'
|
|
PriceUpdated = 13, //implies also 'Active'
|
|
|
|
}
|
|
|
|
public enum SupportStatus : byte
|
|
{
|
|
OutOfSupport = 0,
|
|
BestEffort = 1,
|
|
Supported = 2,
|
|
}
|
|
|
|
public enum OptInStatus : byte
|
|
{
|
|
OptOut = 0,
|
|
NotKnown = 1,
|
|
OptIn = 2,
|
|
}
|
|
|
|
public enum Gender : byte
|
|
{
|
|
Unknown = 0,
|
|
Male = 1,
|
|
Female = 2,
|
|
Divers = 3,
|
|
}
|
|
}
|
|
|
|
}
|