using LiteCharms.Features.TechShop.Customers.Entities; using LiteCharms.Features.TechShop.Quotes.Entities; using LiteCharms.Features.TechShop.ShoppingCarts.Entities; namespace LiteCharms.Features.TechShop.Orders.Entities; [EntityTypeConfiguration] public class Order : Models.Order { public virtual ICollection? Refunds { get; set; } public virtual Customer? Customer { get; set; } public virtual Quote? Quote { get; set; } public virtual ShoppingCart? ShoppingCart { get; set; } }