11 lines
339 B
C#
11 lines
339 B
C#
namespace GracePeriodManager.IntegrationEvents.Events
|
|
{
|
|
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
|
|
public class GracePeriodConfirmedIntegrationEvent : IntegrationEvent
|
|
{
|
|
public int OrderId { get;}
|
|
|
|
public GracePeriodConfirmedIntegrationEvent(int orderId) => OrderId = orderId;
|
|
}
|
|
} |