hello-shop/src/HelloShop.OrderingService/DistributedEvents/Events/OrderStartedDistributedEvent.cs
2025-03-20 22:13:45 +08:00

10 lines
315 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
using HelloShop.EventBus.Abstractions;
namespace HelloShop.OrderingService.DistributedEvents.Events
{
public record OrderStartedDistributedEvent(int UserId) : DistributedEvent;
}