using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
namespace Jellyfin.Networking.Configuration
{
    /// 
    /// Defines the .
    /// 
    public class NetworkConfigurationFactory : IConfigurationFactory
    {
        /// 
        /// The GetConfigurations.
        /// 
        /// The .
        public IEnumerable GetConfigurations()
        {
            return new[]
            {
                new ConfigurationStore
                {
                    Key = "network",
                    ConfigurationType = typeof(NetworkConfiguration)
                }
            };
        }
    }
}