Files
Mccn/src/Common/Mccn.Common.Application/EventBus/IIntegrationEvent.cs
2026-03-15 17:11:31 +01:00

8 lines
141 B
C#

namespace Mccn.Common.Application.EventBus;
public interface IIntegrationEvent
{
Guid Id { get; }
DateTime OccurredOnUtc { get; }
}