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