Try your search with a different keyword or use * as a wildcard.
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; }
}