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.
27 lines
1006 B
27 lines
1006 B
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.IO;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Providers
|
|
{
|
|
/// <summary>
|
|
/// Nfo provider for videos.
|
|
/// </summary>
|
|
public class VideoNfoProvider : BaseVideoNfoProvider<Video>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="VideoNfoProvider"/> class.
|
|
/// </summary>
|
|
/// <param name="logger">The logger.</param>
|
|
/// <param name="fileSystem">The file system.</param>
|
|
/// <param name="config">the configuration manager.</param>
|
|
/// <param name="providerManager">The provider manager.</param>
|
|
public VideoNfoProvider(ILogger<VideoNfoProvider> logger, IFileSystem fileSystem, IConfigurationManager config, IProviderManager providerManager)
|
|
: base(logger, fileSystem, config, providerManager)
|
|
{
|
|
}
|
|
}
|
|
}
|