2022-06-17 01:44:05 +04:30

10 lines
198 B
C#

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