Files
components/LiteCharms.Features.MidrandBooks/Products/Entities/Product.cs
T

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; } = [];
}