blob: 68d5d8b2de06482855a871c396f389eee3535916 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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)
{
}
}
}
|