117 lines
1.7 KiB
C#
117 lines
1.7 KiB
C#
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,
|
|
Business = 1,
|
|
Other = 2
|
|
}
|
|
|
|
public enum AddressType
|
|
{
|
|
Billing = 1,
|
|
Shipping = 2,
|
|
Other = 3
|
|
}
|
|
|
|
public enum AddressBuildingTypes : int
|
|
{
|
|
Residential = 0,
|
|
Commercial = 1,
|
|
Industrial = 2,
|
|
MixedUse = 3,
|
|
Agricultural = 4,
|
|
Institutional = 5,
|
|
Recreational = 6,
|
|
}
|
|
|
|
public enum SocialMediaTypes : int
|
|
{
|
|
Twitter = 0,
|
|
Facebook = 1,
|
|
Instagram = 2,
|
|
LinkedIn = 3,
|
|
TikTok = 4,
|
|
YouTube = 5,
|
|
Pinterest = 6,
|
|
Reddit = 7,
|
|
Tumblr = 8,
|
|
GitHub = 9
|
|
}
|
|
|
|
public enum EmailStatuses : int
|
|
{
|
|
GeneralError = 0,
|
|
AuthenticationError = 1,
|
|
ProtocolError = 2,
|
|
Connected = 3,
|
|
Disconnected = 4,
|
|
TooManyConnections = 5,
|
|
ConnectionAborted = 6,
|
|
Success = 7
|
|
}
|
|
|
|
public enum Priorities : int
|
|
{
|
|
Low = 0,
|
|
Medium = 1,
|
|
High = 2,
|
|
} |