using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Branding;
namespace Emby.Server.Implementations.Branding
{
    /// 
    /// A configuration factory for .
    /// 
    public class BrandingConfigurationFactory : IConfigurationFactory
    {
        /// 
        public IEnumerable GetConfigurations()
        {
            return new[]
            {
                new ConfigurationStore
                {
                     ConfigurationType = typeof(BrandingOptions),
                     Key = "branding"
                }
            };
        }
    }
}