14 lines
393 B
C#
14 lines
393 B
C#
using LiteCharms.Features.MidrandBooks.Customers.Entities;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.Orders.Entities;
|
|
|
|
[EntityTypeConfiguration<ShippingConfiguration, Shipping>]
|
|
public class Shipping : Models.Shipping
|
|
{
|
|
public virtual Order? Order { get; set; }
|
|
|
|
public virtual Address? Address { get; set; }
|
|
|
|
public virtual ShippingProvider? ShippingProvider { get; set; }
|
|
}
|