123456789101112131415161718192021222324252627282930 |
- using System.Collections.Generic;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Model.Configuration;
- namespace MediaBrowser.XbmcMetadata.Configuration
- {
- public class ConfigurationFactory : IConfigurationFactory
- {
- /// <inheritdoc />
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new[]
- {
- new ConfigurationStore
- {
- ConfigurationType = typeof(XbmcMetadataOptions),
- Key = "xbmcmetadata"
- }
- };
- }
- }
- public static class ConfigurationExtension
- {
- public static XbmcMetadataOptions GetNfoConfiguration(this IConfigurationManager manager)
- {
- return manager.GetConfiguration<XbmcMetadataOptions>("xbmcmetadata");
- }
- }
- }
|