6 lines
155 B
C#
6 lines
155 B
C#
namespace VisionBuilder.UI.Common.Commands.Interfaces;
|
|
|
|
public interface IEventHandler<TEvent> where TEvent : IEvent
|
|
{
|
|
void Handle(TEvent @event);
|
|
} |