using System; namespace KYFramework.Network { public interface IMHandler { void Handle(Session session, object message); Type GetMessageType(); } }