// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Net; using MediaBrowser.Common.Configuration; /// /// 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; } }