31 lines
650 B
C#
31 lines
650 B
C#
using LiteCharms.Features.Models;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.Products.Models;
|
|
|
|
public class Product
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public ProductTypes Type { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Summary { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public string? ImageUrl { get; set; }
|
|
|
|
public string[]? ThumbnailUrls { get; set; }
|
|
|
|
public string[]? Categories { get; set; }
|
|
|
|
public ProductMetadata? Metadata { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|