using System.Collections.Generic; namespace ET.Server { [ComponentOf(typeof(Scene))] public class UserSessionComponent: Entity, IAwake, IDestroy { public Dictionary<long, long> UserSession = new Dictionary<long, long>(); } }