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

14 lines
426 B
C#

using ZeroFramework.EventBus.Events;
namespace ZeroFramework.DeviceCenter.Application.IntegrationEvents.Events.Ordering
{
public class OrderStatusChangedToSubmittedIntegrationEvent(Guid orderId, string orderStatus, Guid buyerId) : IntegrationEvent
{
public Guid OrderId { get; } = orderId;
public string OrderStatus { get; } = orderStatus;
public Guid BuyerId { get; } = buyerId;
}
}