main
1using presentation.windows.common;
2
3namespace presentation.windows.eventing
4{
5    public interface EventSubscriber<Event> where Event : IEvent
6    {
7        void notify(Event message);
8    }
9}