7 lines
195 B
C#
7 lines
195 B
C#
namespace LiteCharms.Features.MidrandBooks.Orders.Entities;
|
|
|
|
public class ShippingProvider : Models.ShippingProvider
|
|
{
|
|
public virtual ICollection<Shipping> Shippings { get; set; } = [];
|
|
}
|