zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/IntegrationEvents/Events/Ordering/OrderPaymentSucceededIntegrationEvent.cs

10 lines
276 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using ZeroFramework.EventBus.Events;
namespace ZeroFramework.DeviceCenter.Application.IntegrationEvents.Events.Ordering
{
public class OrderPaymentSucceededIntegrationEvent(Guid orderId) : IntegrationEvent
{
public Guid OrderId { get; } = orderId;
}
}