Added Order models

This commit is contained in:
Khwezi Mngoma
2026-05-26 00:47:07 +02:00
parent 7136e4fc70
commit 20b747e89c
7 changed files with 137 additions and 3 deletions
+58
View File
@@ -1,5 +1,63 @@
namespace LiteCharms.Features;
public enum ShippingProviderTypes : int
{
Dsv = 0,
Pargo = 1,
Ram = 2,
TheCourierGuy = 3,
Paxi = 4,
FastWay = 5,
MdsCollivery = 6,
PostNet = 7,
Aramex = 8,
DHL = 9,
FedEx = 10,
UPS = 11,
USPS = 12,
AmazonLogistics = 13,
LocalCourier = 14,
Other = 15
}
public enum ShippingStatuses : int
{
Pending = 0,
Shipped = 1,
Delivered = 2,
Returned = 3,
Cancelled = 4,
}
public enum RefundTypes : int
{
Full = 0,
Partial = 1,
StoreCredit = 2,
Exchange = 3,
Other = 4
}
public enum RefundStatus : int
{
Pending = 0,
Approved = 1,
Rejected = 2,
Completed = 3,
Failed = 4,
}
public enum OrderStatus : int
{
Pending = 0,
Completed = 1,
Cancelled = 2,
Failed = 3,
Refunded = 4,
Error = 5,
OnHold = 6,
}
public enum ContactTypes : int
{
Personal = 0,