Webiant Logo Webiant Logo
  1. No results found.

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

ShipmentReadyForPickupEvent.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Shipment ready for pickup event
/// 
public partial class ShipmentReadyForPickupEvent
{
    /// 
    /// Ctor
    /// 
    /// Shipment
    public ShipmentReadyForPickupEvent(Shipment shipment)
    {
        Shipment = shipment;
    }

    /// 
    /// Shipment
    /// 
    public Shipment Shipment { get; }
}