using System.Collections.Generic;

namespace ET.Server
{
    [ComponentOf(typeof(Scene))]
    public class GameSessionKeyComponent : Entity, IAwake
    {
        public readonly Dictionary<long, string> sessionKey = new Dictionary<long, string>();
    }
}