using System.Collections.Generic; namespace ET { public class ChatComponent : Entity, IAwake, IDestroy { //ChatType_Id -> List<ChatInfo> public Dictionary<string, List<ChatInfo>> ChatInfo = new Dictionary<string, List<ChatInfo>>(); } }