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