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.
26 lines
846 B
26 lines
846 B
4 years ago
|
#pragma warning disable CS1591
|
||
|
|
||
6 years ago
|
using MediaBrowser.Controller.Configuration;
|
||
11 years ago
|
using MediaBrowser.Controller.Library;
|
||
|
using MediaBrowser.Controller.LiveTv;
|
||
|
using MediaBrowser.Controller.Providers;
|
||
8 years ago
|
using MediaBrowser.Model.IO;
|
||
6 years ago
|
using MediaBrowser.Providers.Manager;
|
||
|
using Microsoft.Extensions.Logging;
|
||
11 years ago
|
|
||
|
namespace MediaBrowser.Providers.LiveTv
|
||
|
{
|
||
6 years ago
|
public class LiveTvMetadataService : MetadataService<LiveTvChannel, ItemLookupInfo>
|
||
11 years ago
|
{
|
||
5 years ago
|
public LiveTvMetadataService(
|
||
|
IServerConfigurationManager serverConfigurationManager,
|
||
5 years ago
|
ILogger<LiveTvMetadataService> logger,
|
||
5 years ago
|
IProviderManager providerManager,
|
||
|
IFileSystem fileSystem,
|
||
|
ILibraryManager libraryManager)
|
||
|
: base(serverConfigurationManager, logger, providerManager, fileSystem, libraryManager)
|
||
11 years ago
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|