using MediaBrowser.Common.Configuration; namespace MediaBrowser.Common.Net; /// /// A configuration that stores network related settings. /// public class NetworkConfigurationStore : ConfigurationStore { /// /// The name of the configuration in the storage. /// public const string StoreKey = "network"; /// /// Initializes a new instance of the class. /// public NetworkConfigurationStore() { ConfigurationType = typeof(NetworkConfiguration); Key = StoreKey; } }