zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/IntegrationEvents/Events/Ordering/OrderPaymentFailedIntegrationEvent.cs
2023-12-05 17:22:48 +08:00

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;
}
}