public SolvedConfigStatus GetStatus(Guid pluginID)
        {
            SolvedPluginConfigElement e = null;

            _cfg.TryGetValue(pluginID, out e);
            return(e != null ? e.Status : SolvedConfigStatus.Optional);
        }
        public bool Contains(object item)
        {
            SolvedPluginConfigElement e = item as SolvedPluginConfigElement;

            return(e != null?_cfg.ContainsKey(e.PluginId) : false);
        }