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