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