Files
components/LiteCharms.Features/Shop/Quotes/Entities/Quote.cs
T
2026-05-13 20:06:24 +02:00

16 lines
462 B
C#

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