Files
components/LiteCharms.Features/Shop/ShoppingCarts/Entities/ShoppingCartItem.cs
T
2026-05-14 02:46:07 +02:00

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