7 lines
115 B
C#
7 lines
115 B
C#
namespace DDD
|
|
{
|
|
public interface IEventHandler<in T> where T : IEvent
|
|
{
|
|
void Handle(T evt);
|
|
}
|
|
} |