209 lines
3.1 KiB
C#
209 lines
3.1 KiB
C#
namespace LiteCharms.Features;
|
|
|
|
public enum InventoryStatuses : int
|
|
{
|
|
Adjustment = 0,
|
|
Reserved = 1,
|
|
Released = 2,
|
|
Sold = 3,
|
|
Replenished = 4,
|
|
Correction = 5,
|
|
}
|
|
|
|
public enum LedgerStatuses : int
|
|
{
|
|
Changed = 0,
|
|
Sent = 1,
|
|
Received = 2,
|
|
Refunded = 3,
|
|
Cancelled = 4,
|
|
Failed = 5,
|
|
Partial = 6,
|
|
Completed = 7,
|
|
}
|
|
|
|
public enum PaymentStatuses : int
|
|
{
|
|
NotPaid = 0,
|
|
Paid = 1,
|
|
Cancelled = 2,
|
|
Requested = 3,
|
|
Failed = 4,
|
|
}
|
|
|
|
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,
|
|
}
|
|
|
|
public enum PublisherTypes : int
|
|
{
|
|
Individual = 0,
|
|
Company = 1,
|
|
Organization = 2,
|
|
SelfPublished = 3,
|
|
UniversityPress = 4,
|
|
GovernmentAgency = 5,
|
|
NonProfit = 6,
|
|
Independent = 7
|
|
}
|
|
|
|
public enum BookTypes : int
|
|
{
|
|
Fiction = 0,
|
|
NonFiction = 1,
|
|
Academic = 2,
|
|
SelfHelp = 3,
|
|
Biography = 4,
|
|
Poetry = 5,
|
|
Children = 6,
|
|
YoungAdult = 7,
|
|
ScienceFiction = 8,
|
|
Fantasy = 9
|
|
}
|
|
|
|
public enum BookContentTypes : int
|
|
{
|
|
Text = 0,
|
|
Image = 1,
|
|
Video = 2,
|
|
Audio = 3,
|
|
Interactive = 4,
|
|
Markdown = 5,
|
|
Html = 6,
|
|
Json = 7,
|
|
Yaml = 8
|
|
}
|
|
|
|
public enum BookPageTypes : int
|
|
{
|
|
Cover = 0,
|
|
Preface = 1,
|
|
Introduction = 2,
|
|
Content = 3,
|
|
Closing = 4,
|
|
Referencer = 5,
|
|
Credits = 6,
|
|
BackCover = 7
|
|
}
|
|
|
|
public enum ProductTypes : int
|
|
{
|
|
Book = 1,
|
|
Journal = 2,
|
|
Magazine = 3,
|
|
EBook = 4,
|
|
Audiobook = 5,
|
|
Accessory = 6
|
|
} |