Files
HawkeyeVision/VisionBuilder.UI.Common/Commands/Interfaces/IEventHandler.cs
2025-07-14 12:03:59 +02:00

6 lines
155 B
C#

namespace VisionBuilder.UI.Common.Commands.Interfaces;
public interface IEventHandler<TEvent> where TEvent : IEvent
{
void Handle(TEvent @event);
}