Webiant Logo Webiant Logo
  1. No results found.

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

ShipmentTrackingNumberSetEvent.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Shipment tracking number set event
/// 
public partial class ShipmentTrackingNumberSetEvent
{
    /// 
    /// Ctor
    /// 
    /// Shipment
    public ShipmentTrackingNumberSetEvent(Shipment shipment)
    {
        Shipment = shipment;
    }

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