17 lines
499 B
C#
17 lines
499 B
C#
namespace Microsoft.eShopOnContainers.Services.Ordering.SignalrHub.IntegrationEvents.Events;
|
|
|
|
public record OrderStatusChangedToShippedIntegrationEvent : IntegrationEvent
|
|
{
|
|
public int OrderId { get; }
|
|
public string OrderStatus { get; }
|
|
public string BuyerName { get; }
|
|
|
|
public OrderStatusChangedToShippedIntegrationEvent(int orderId, string orderStatus, string buyerName)
|
|
{
|
|
OrderId = orderId;
|
|
OrderStatus = orderStatus;
|
|
BuyerName = buyerName;
|
|
}
|
|
}
|
|
|