You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
319 B
10 lines
319 B
namespace DealerSelection.Api.Models.Enum;
|
|
|
|
public enum DealerSelectionJobStatus
|
|
{
|
|
OldData = -1,
|
|
ReadyForJob = 0, //Booking Done and ready to pick
|
|
Picked = 1, // Picked by Job
|
|
SentToBot = 2, // Web Engage Event called to Inititate Bot
|
|
Complete = 3, //Dealer Assigned through Single/BOT/Dummy
|
|
}
|