10 lines
273 B
C#
10 lines
273 B
C#
using ZeroFramework.EventBus.Events;
|
|
|
|
namespace ZeroFramework.DeviceCenter.Application.IntegrationEvents.Events.Ordering
|
|
{
|
|
public class OrderPaymentFailedIntegrationEvent(Guid orderId) : IntegrationEvent
|
|
{
|
|
public Guid OrderId { get; } = orderId;
|
|
}
|
|
}
|