You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
835 B
30 lines
835 B
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");
|
|
}
|
|
}
|
|
}
|