diff --git a/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs b/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs index 8186f8a13..be57329c7 100644 --- a/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs +++ b/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs @@ -7,13 +7,13 @@ { public int OrderId { get; } - public IEnumerable OrderStockItem { get; } + public List OrderStockItems { get; } - public OrderStockNotConfirmedIntegrationEvent(int orderId, - IEnumerable orderStockItem) + public OrderStockNotConfirmedIntegrationEvent(int orderId, + List orderStockItems) { OrderId = orderId; - OrderStockItem = orderStockItem; + OrderStockItems = orderStockItems; } }