///////////////////////////////////////////////////////////
// ClientServiceRequestPriority.cs
// Implementation of ClientServiceRequestPriority
//
// Created on: 07-Jun-2004 8:41:30 AM
// Object design: Joyce & John Nov 8th 2006
// Coded: John 8-Nov-2006
///////////////////////////////////////////////////////////
using System;
using System.ComponentModel;
namespace GZTW.AyaNova.BLL
{
///
/// User chosen priority for their service request
///
[TypeConverter(typeof(EnumDescConverter))]
public enum ClientServiceRequestPriority : int
{
///
/// Not urgent, service at time of choosing of service company
///
[Description("LT:ClientServiceRequestPriority.NotUrgent")]
NotUrgent = 0,
///
/// Not an emergency but quite urgent, service as soon as possible
///
[Description("LT:ClientServiceRequestPriority.ASAP")]
ASAP = 1,
///
/// Issue is an emergency, client expects service company to make it their first priority
///
[Description("LT:ClientServiceRequestPriority.Emergency")]
Emergency = 2
}//end ClientServiceRequestPriority
}