DocSpace-buildtools/common/ASC.EventBus/Abstractions/IIntegrationEventHandler.cs

12 lines
273 B
C#

namespace ASC.EventBus.Abstractions;
public interface IIntegrationEventHandler<in TIntegrationEvent> : IIntegrationEventHandler
where TIntegrationEvent : IntegrationEvent
{
Task Handle(TIntegrationEvent @event);
}
public interface IIntegrationEventHandler
{
}