DlnaConfigurationFactory.cs 551 B

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