Newer
Older
InMemoryBus / src / ApplicationCore / Events / OrderPlaced.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 207 bytes Init
using MediatR;

namespace Microsoft.eShopWeb.Events;

public class OrderPlaced : INotification
{
    public int OrderId { get; }

    public OrderPlaced(int orderId)
    {
        OrderId = orderId;
    }
}