main
1namespace presentation.windows.common
2{
3 public interface Handler
4 {
5 void handle(object item);
6 }
7
8 public interface Handler<T>
9 {
10 void handle(T item);
11 }
12}