BrandingConfigurationFactory.cs 627 B

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