summaryrefslogtreecommitdiff
path: root/code/common/Handler.cs
blob: 203ef0c5897f037346972cf56ae9e9ace470ae39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace common
{
    public interface Handler
    {
        void handle(object item);
    }

    public interface Handler<T>
    {
        void handle(T item);
    }
}