using LiteCharms.Entities.Configuration; namespace LiteCharms.Entities; [EntityTypeConfiguration] public class ShoppingCart : Models.ShoppingCart { public virtual Customer? Customer { get; set; } public virtual Order? Order { get; set; } public virtual Quote? Quote { get; set; } public virtual ICollection? ShoppingCartItems { get; set; } }