Add customer communication system
This commit is contained in:
11
LittleShop/Enums/BotStatus.cs
Normal file
11
LittleShop/Enums/BotStatus.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace LittleShop.Enums;
|
||||
|
||||
public enum BotStatus
|
||||
{
|
||||
Pending = 0,
|
||||
Active = 1,
|
||||
Inactive = 2,
|
||||
Suspended = 3,
|
||||
Maintenance = 4,
|
||||
Deleted = 5
|
||||
}
|
||||
12
LittleShop/Enums/BotType.cs
Normal file
12
LittleShop/Enums/BotType.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace LittleShop.Enums;
|
||||
|
||||
public enum BotType
|
||||
{
|
||||
Telegram = 0,
|
||||
Discord = 1,
|
||||
WhatsApp = 2,
|
||||
Signal = 3,
|
||||
Matrix = 4,
|
||||
IRC = 5,
|
||||
Custom = 99
|
||||
}
|
||||
21
LittleShop/Enums/MetricType.cs
Normal file
21
LittleShop/Enums/MetricType.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace LittleShop.Enums;
|
||||
|
||||
public enum MetricType
|
||||
{
|
||||
UserContact = 0,
|
||||
NewSession = 1,
|
||||
Order = 2,
|
||||
Payment = 3,
|
||||
Message = 4,
|
||||
Command = 5,
|
||||
Error = 6,
|
||||
ApiCall = 7,
|
||||
CacheHit = 8,
|
||||
CacheMiss = 9,
|
||||
ResponseTime = 10,
|
||||
Uptime = 11,
|
||||
Revenue = 12,
|
||||
CartAbandoned = 13,
|
||||
ProductView = 14,
|
||||
CategoryBrowse = 15
|
||||
}
|
||||
Reference in New Issue
Block a user