Created Order, Refund, Shipping
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user