18 lines
433 B
C#
18 lines
433 B
C#
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers
|
|
{
|
|
public class GenericVideoResolver<T> : BaseVideoResolver<T>
|
|
where T : Video, new()
|
|
{
|
|
public GenericVideoResolver(ILibraryManager libraryManager)
|
|
: base(libraryManager)
|
|
{
|
|
}
|
|
}
|
|
}
|