NfoConfigurationFactory.cs 632 B

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