Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ShipmentCreatedEvent.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Shipment created event
/// 
public partial class ShipmentCreatedEvent
{
    #region Ctor

    public ShipmentCreatedEvent(Shipment shipment)
    {
        Shipment = shipment;
    }

    #endregion

    #region Properties

    /// 
    /// Gets the shipment
    /// 
    public Shipment Shipment { get; }

    #endregion
}