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