using Fantasy; using Fantasy.DataStructure.Collection; using Fantasy.Entitas; namespace NB.Chat; public class ChatUnitManageComponent : Entity { public readonly Dictionary ChatUnits = new(); /// /// 不在线消息缓存 /// public readonly OneToManyList NotSendMessage = new(); public readonly OneToManyList PrivateMessage = new(); }