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