2025-03-15 16:54:20 +03:30

10 lines
199 B
C#

using BuildingBlocks.Core.Event;
using MediatR;
namespace BuildingBlocks.EventStoreDB.Events;
public interface IEventHandler<in TEvent> : INotificationHandler<TEvent>
where TEvent : IEvent
{
}