Webiant Logo Webiant Logo
  1. No results found.

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

ShipmentDeliveredEvent.cs

namespace Nop.Core.Domain.Shipping;

/// <summary>
/// Shipment delivered event
/// </summary>
public partial class ShipmentDeliveredEvent
{
    /// <summary>
    /// Ctor
    /// </summary>
    /// <param name="shipment">Shipment</param>
    public ShipmentDeliveredEvent(Shipment shipment)
    {
        Shipment = shipment;
    }

    /// <summary>
    /// Shipment
    /// </summary>
    public Shipment Shipment { get; }
}