2020-02-23 04:11:43 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:03:10 -07:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 12:26:56 -07:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-06-29 20:04:50 -07:00
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Configuration
|
|
|
|
{
|
2020-02-23 04:11:43 -07:00
|
|
|
public class NfoConfigurationFactory : IConfigurationFactory
|
2014-06-29 20:04:50 -07:00
|
|
|
{
|
2019-08-18 10:54:07 -07:00
|
|
|
/// <inheritdoc />
|
2014-06-29 20:04:50 -07:00
|
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
|
|
{
|
|
|
|
return new[]
|
|
|
|
{
|
|
|
|
new ConfigurationStore
|
|
|
|
{
|
|
|
|
ConfigurationType = typeof(XbmcMetadataOptions),
|
|
|
|
Key = "xbmcmetadata"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|