Webiant Logo Webiant Logo
  1. No results found.

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

ShipmentSentEvent.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Shipment sent event
/// 
public partial class ShipmentSentEvent
{
    /// 
    /// Ctor
    /// 
    /// Shipment
    public ShipmentSentEvent(Shipment shipment)
    {
        Shipment = shipment;
    }

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