Files
components/LiteCharms.Features/Shop/ShoppingCarts/Entities/ShoppingCartItem.cs
T
2026-05-13 20:06:24 +02:00

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; }
}