using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TenantACustomisations.IntegrationEvents.Events { public class OrderStatusChangedToSubmittedIntegrationEvent : IntegrationEvent { public int OrderId { get; set; } public string OrderStatus { get; set; } public string BuyerName { get; set; } public OrderStatusChangedToSubmittedIntegrationEvent(int orderId, string orderStatus, string buyerName) { OrderId = orderId; OrderStatus = orderStatus; BuyerName = buyerName; } } }