namespace AyaNova.Biz
{
public enum CustomerServiceRequestPriority : int
{
///
/// Not urgent, service at time of choosing of service company
///
NotUrgent = 0,
///
/// Not an emergency but quite urgent, service as soon as possible
///
ASAP = 1,
///
/// Issue is an emergency, client expects service company to make it their first priority
///
Emergency = 2
}
}//eons