30 lines
835 B
C#
30 lines
835 B
C#
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Model.Configuration;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Configuration
|
|
{
|
|
public class ConfigurationFactory : IConfigurationFactory
|
|
{
|
|
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");
|
|
}
|
|
}
|
|
}
|