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