29 lines
405 B
C#
29 lines
405 B
C#
namespace LiteCharms.Models;
|
|
|
|
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
|
|
}
|