82 lines
1.1 KiB
C#
82 lines
1.1 KiB
C#
namespace LiteCharms.Features.Shop;
|
|
|
|
public enum EmailStatuses : int
|
|
{
|
|
GeneralError = 0,
|
|
AuthenticationError = 1,
|
|
ProtocolError = 2,
|
|
Connected = 3,
|
|
Disconnected = 4,
|
|
TooManyConnections = 5,
|
|
ConnectionAborted = 6,
|
|
Success = 7
|
|
}
|
|
|
|
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 Priorities : int
|
|
{
|
|
Low = 0,
|
|
Medium = 1,
|
|
High = 2,
|
|
}
|
|
|
|
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
|
|
}
|
|
|