This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
namespace LiteCharms.Features.TechShop;
|
||||
|
||||
public enum CorrelationIdTypes : int
|
||||
{
|
||||
None = 0,
|
||||
Email = 1,
|
||||
Discord = 2,
|
||||
Slack = 3,
|
||||
Whatsapp = 4,
|
||||
Customer = 5,
|
||||
Order = 6,
|
||||
Refund = 7,
|
||||
Lead = 8,
|
||||
Quote = 9,
|
||||
LinkedIn = 10
|
||||
}
|
||||
|
||||
public enum NotificationPlatforms : int
|
||||
{
|
||||
Email = 1,
|
||||
Discord = 2,
|
||||
Slack = 3,
|
||||
WhatsApp = 4,
|
||||
System = 5
|
||||
}
|
||||
|
||||
public enum QuoteStatus : int
|
||||
{
|
||||
Draft = 0,
|
||||
Sent = 1,
|
||||
Accepted = 2,
|
||||
Rejected = 3,
|
||||
Expired = 4
|
||||
}
|
||||
|
||||
public enum OrderStatus : int
|
||||
{
|
||||
Pending = 0,
|
||||
Completed = 1,
|
||||
Cancelled = 2,
|
||||
Failed = 3,
|
||||
Refunded = 4,
|
||||
Error = 5
|
||||
}
|
||||
|
||||
public enum LeadStatus : int
|
||||
{
|
||||
New = 0,
|
||||
Contacted = 1,
|
||||
Qualified = 2,
|
||||
Unqualified = 3,
|
||||
Converted = 4,
|
||||
Lost = 5
|
||||
}
|
||||
|
||||
public enum NotificationDirection : int
|
||||
{
|
||||
Incoming = 0,
|
||||
Outgoing = 1,
|
||||
Neutral = 2
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user