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