// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Net; using System.Collections.Generic; using MediaBrowser.Common.Configuration; /// /// Defines the . /// public class NetworkConfigurationFactory : IConfigurationFactory { /// /// The GetConfigurations. /// /// The . public IEnumerable GetConfigurations() { return new[] { new NetworkConfigurationStore() }; } }