mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
10 lines
199 B
C#
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
|
|
{
|
|
}
|