using LiteCharms.Features.TechShop.CartPackages.Entities; namespace LiteCharms.Features.TechShop.ShoppingCarts.Entities; [EntityTypeConfiguration] public class ShoppingCartPackage : Models.ShoppingCartPackage { public virtual ShoppingCart? ShoppingCart { get; set; } public virtual Package? Package { get; set; } }