namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.Events;
///
/// Event used when the order is paid
///
public class OrderStatusChangedToPaidDomainEvent
: INotification
{
public int OrderId { get; }
public IEnumerable OrderItems { get; }
public OrderStatusChangedToPaidDomainEvent(int orderId,
IEnumerable orderItems)
{
OrderId = orderId;
OrderItems = orderItems;
}
}