63 lines
972 B
C#
63 lines
972 B
C#
namespace LiteCharms.Features.MidrandBooks;
|
|
|
|
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
|
|
}
|