10 lines
350 B
C#
10 lines
350 B
C#
// Copyright (c) HelloShop Corporation. All rights reserved.
|
|
// See the license file in the project root for more information.
|
|
|
|
using HelloShop.ServiceDefaults.DistributedEvents.Abstractions;
|
|
|
|
namespace HelloShop.OrderingService.DistributedEvents.Events
|
|
{
|
|
public record OrderPaymentSucceededDistributedEvent(int OrderId) : DistributedEvent;
|
|
}
|