25 lines
632 B
C#
25 lines
632 B
C#
#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"
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|