10 lines
317 B
C#
10 lines
317 B
C#
namespace LiteCharms.Features.MidrandBooks.Products.Entities;
|
|
|
|
[EntityTypeConfiguration<ProductConfiguration, Product>]
|
|
public class Product : Models.Product
|
|
{
|
|
public virtual ICollection<ProductCategory> Categories { get; set; } = [];
|
|
|
|
public virtual ICollection<ProductPrice> Prices { get; set; } = [];
|
|
}
|