11 lines
295 B
C#
11 lines
295 B
C#
using LiteCharms.Features.Shop.Products.Entities;
|
|
|
|
namespace LiteCharms.Features.Shop.ShoppingCarts.Entities;
|
|
|
|
public class ShoppingCartItem : Models.ShoppingCartItem
|
|
{
|
|
public virtual ShoppingCart? ShoppingCart { get; set; }
|
|
|
|
public virtual ProductPrice? ProductPrice { get; set; }
|
|
}
|