123456789101112131415161718192021222324 |
- #pragma warning disable CS1591
- using System.Collections.Generic;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Model.Configuration;
- namespace MediaBrowser.XbmcMetadata.Configuration
- {
- public class NfoConfigurationFactory : IConfigurationFactory
- {
- /// <inheritdoc />
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new[]
- {
- new ConfigurationStore
- {
- ConfigurationType = typeof(XbmcMetadataOptions),
- Key = "xbmcmetadata"
- }
- };
- }
- }
- }
|