10 lines
306 B
C#
10 lines
306 B
C#
namespace Microsoft.eShopOnContainers.Payment.API.IntegrationEvents.Events;
|
|
|
|
public record OrderStatusChangedToStockConfirmedIntegrationEvent : IntegrationEvent
|
|
{
|
|
public int OrderId { get; }
|
|
|
|
public OrderStatusChangedToStockConfirmedIntegrationEvent(int orderId)
|
|
=> OrderId = orderId;
|
|
}
|