12 lines
192 B
C#
12 lines
192 B
C#
|
using System;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public interface IMHandler
|
||
|
{
|
||
|
void Handle(Session session, object message);
|
||
|
Type GetMessageType();
|
||
|
|
||
|
Type GetResponseType();
|
||
|
}
|
||
|
}
|