using System.Collections.Generic; namespace ETModel { /// /// mailbox分发组件,不同类型的mailbox交给不同的MailboxHandle处理 /// public class MailboxDispatcherComponent : Entity { public static MailboxDispatcherComponent Instance { get; set; } public readonly Dictionary MailboxHandlers = new Dictionary(); } }