16 lines
462 B
C#
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; }
|
|
}
|