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;

/// <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
}