This commit is contained in:
19
server/AyaNova/biz/CustomerServiceRequestPriority.cs
Normal file
19
server/AyaNova/biz/CustomerServiceRequestPriority.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace AyaNova.Biz
|
||||
{
|
||||
|
||||
public enum CustomerServiceRequestPriority : int
|
||||
{
|
||||
/// <summary>
|
||||
/// Not urgent, service at time of choosing of service company
|
||||
/// </summary>
|
||||
NotUrgent = 0,
|
||||
/// <summary>
|
||||
/// Not an emergency but quite urgent, service as soon as possible
|
||||
/// </summary>
|
||||
ASAP = 1,
|
||||
/// <summary>
|
||||
/// Issue is an emergency, client expects service company to make it their first priority
|
||||
/// </summary>
|
||||
Emergency = 2
|
||||
}
|
||||
}//eons
|
||||
Reference in New Issue
Block a user