namespace CodexPlugin.OverwatchSupport { public class NameIdMap { private readonly Dictionary map = new Dictionary(); public void Add(string name, string peerId) { map.Add(name, peerId); } public string GetPeerId(string name) { return map[name]; } public int Size { get { return map.Count; } } } }