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.
19 lines
421 B
19 lines
421 B
4 years ago
|
#nullable disable
|
||
|
|
||
5 years ago
|
#pragma warning disable CS1591
|
||
|
|
||
6 years ago
|
using MediaBrowser.Controller.Entities;
|
||
10 years ago
|
using MediaBrowser.Controller.Library;
|
||
12 years ago
|
|
||
8 years ago
|
namespace Emby.Server.Implementations.Library.Resolvers
|
||
12 years ago
|
{
|
||
9 years ago
|
public class GenericVideoResolver<T> : BaseVideoResolver<T>
|
||
6 years ago
|
where T : Video, new()
|
||
9 years ago
|
{
|
||
6 years ago
|
public GenericVideoResolver(ILibraryManager libraryManager)
|
||
|
: base(libraryManager)
|
||
9 years ago
|
{
|
||
|
}
|
||
|
}
|
||
12 years ago
|
}
|