This commit is contained in:
@@ -22,8 +22,6 @@ public class Product
|
||||
|
||||
public string[]? ThumbnailUrls { get; set; }
|
||||
|
||||
public string[]? Categories { get; set; }
|
||||
|
||||
public ProductMetadata? Metadata { get; set; }
|
||||
|
||||
public ProductPrice? Price { get; set; }
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace LiteCharms.Features.MidrandBooks.Products.Models;
|
||||
|
||||
public class ProductCategory
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public long ProductId { get; set; }
|
||||
|
||||
public long CategoryId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user