System.Configuration.KeyValueConfigurationElement
namespace System.Configuration
{
public class KeyValueConfigurationElement : ConfigurationElement
{
public string Key { get; }
public string Value { get; set; }
public KeyValueConfigurationElement(string key, string value);
}
}