Created Author, Book, AuthorBook, Page and Product with Price
This commit is contained in:
@@ -1,5 +1,18 @@
|
||||
namespace LiteCharms.Features;
|
||||
|
||||
public enum SocialMediaTypes : int
|
||||
{
|
||||
Twitter = 0,
|
||||
Facebook = 1,
|
||||
Instagram = 2,
|
||||
LinkedIn = 3,
|
||||
TikTok = 4,
|
||||
YouTube = 5,
|
||||
Pinterest = 6,
|
||||
Reddit = 7,
|
||||
Tumblr = 8
|
||||
}
|
||||
|
||||
public enum EmailStatuses : int
|
||||
{
|
||||
GeneralError = 0,
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace LiteCharms.Features.Models;
|
||||
|
||||
public class PageReference
|
||||
{
|
||||
public string? Tag { get; set; }
|
||||
|
||||
public string? Description { get; set; }
|
||||
|
||||
public string? Url { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
namespace LiteCharms.Features.Models;
|
||||
|
||||
public class ProductFilter
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? Title { get; set; }
|
||||
|
||||
public string? Category { get; set; }
|
||||
|
||||
public string? Manufacturer { get; set; }
|
||||
|
||||
public string? SerialNumber { get; set; }
|
||||
|
||||
public decimal MinPrice { get; set; }
|
||||
|
||||
public decimal MaxPrice { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace LiteCharms.Features.Models;
|
||||
|
||||
public class ProductMetadata
|
||||
{
|
||||
public string? Manufacturer { get; set; }
|
||||
|
||||
public string? ManufactureDate { get; set; }
|
||||
|
||||
public string? CopyrightInfo { get; set; }
|
||||
|
||||
public string? SerialNumber { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
namespace LiteCharms.Features.Models;
|
||||
|
||||
public class SocialMedia
|
||||
{
|
||||
public SocialMediaTypes Type { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? ImageUrl { get; set; }
|
||||
|
||||
public string? Url { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user