BrandingConfigurationFactory.cs 567 B

123456789101112131415161718192021
  1. using MediaBrowser.Common.Configuration;
  2. using MediaBrowser.Model.Branding;
  3. using System.Collections.Generic;
  4. namespace Emby.Server.Implementations.Branding
  5. {
  6. public class BrandingConfigurationFactory : IConfigurationFactory
  7. {
  8. public IEnumerable<ConfigurationStore> GetConfigurations()
  9. {
  10. return new[]
  11. {
  12. new ConfigurationStore
  13. {
  14. ConfigurationType = typeof(BrandingOptions),
  15. Key = "branding"
  16. }
  17. };
  18. }
  19. }
  20. }