12 lines
378 B
C#
12 lines
378 B
C#
using LiteCharms.Features.TechShop.Products.Entities;
|
|
|
|
namespace LiteCharms.Features.TechShop.ShoppingCarts.Entities;
|
|
|
|
[EntityTypeConfiguration<ShoppingCartItemConfiguration, ShoppingCartItem>]
|
|
public class ShoppingCartItem : Models.ShoppingCartItem
|
|
{
|
|
public virtual ShoppingCart? ShoppingCart { get; set; }
|
|
|
|
public virtual ProductPrice? ProductPrice { get; set; }
|
|
}
|