Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Shipping;
///
/// Shipment created event
///
public partial class ShipmentCreatedEvent
{
#region Ctor
public ShipmentCreatedEvent(Shipment shipment)
{
Shipment = shipment;
}
#endregion
#region Properties
///
/// Gets the shipment
///
public Shipment Shipment { get; }
#endregion
}