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