<PackageReference Include="System.Configuration.ConfigurationManager" Version="11.0.0-preview.1.26104.118" />

System.Configuration.KeyValueConfigurationElement

Represents a configuration element that contains a key/value pair.
namespace System.Configuration { public class KeyValueConfigurationElement : ConfigurationElement { public string Key { get; } public string Value { get; set; } public KeyValueConfigurationElement(string key, string value); } }