8 lines
141 B
C#
8 lines
141 B
C#
namespace Mccn.Common.Application.EventBus;
|
|
|
|
public interface IIntegrationEvent
|
|
{
|
|
Guid Id { get; }
|
|
DateTime OccurredOnUtc { get; }
|
|
}
|