25 lines
409 B
C#
25 lines
409 B
C#
namespace Nop.Core.Domain.Shipping;
|
|
|
|
/// <summary>
|
|
/// Shipment created event
|
|
/// </summary>
|
|
public partial class ShipmentCreatedEvent
|
|
{
|
|
#region Ctor
|
|
|
|
public ShipmentCreatedEvent(Shipment shipment)
|
|
{
|
|
Shipment = shipment;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
/// <summary>
|
|
/// Gets the shipment
|
|
/// </summary>
|
|
public Shipment Shipment { get; }
|
|
|
|
#endregion
|
|
} |