using System.Collections.Generic; namespace ET.Server { [ComponentOf(typeof(Scene))] public class GameTokenInfoComponent : Entity, IAwake { /** token信息 key:token, value:userId **/ public readonly Dictionary tokenInfo = new Dictionary(); } }