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