Added payment database objects
This commit is contained in:
@@ -1,5 +1,35 @@
|
||||
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,
|
||||
}
|
||||
|
||||
public enum PaymentStatuses : int
|
||||
{
|
||||
NotPaid = 0,
|
||||
Paid = 1,
|
||||
Cancelled = 2,
|
||||
Requested = 3,
|
||||
Failed = 4,
|
||||
}
|
||||
|
||||
public enum ShippingProviderTypes : int
|
||||
{
|
||||
Dsv = 0,
|
||||
@@ -114,4 +144,65 @@ 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
|
||||
}
|
||||
Reference in New Issue
Block a user