main
1namespace MoMoney.Service.Infrastructure.Eventing
2{
3 public interface IEventSubscriber<Event> where Event : IEvent
4 {
5 void notify(Event message);
6 }
7}