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