using System.Collections.Generic; namespace ETModel { /// /// 消息分发组件 /// public class MessageDispatherComponent : Component { public readonly Dictionary> Handlers = new Dictionary>(); } }