jellyfin/Emby.Server.Implementations/Library/Resolvers/VideoResolver.cs

19 lines
421 B
C#
Raw Normal View History

#nullable disable
2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using MediaBrowser.Controller.Entities;
2014-11-16 21:44:08 +01:00
using MediaBrowser.Controller.Library;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.Library.Resolvers
2013-02-21 02:33:05 +01:00
{
2016-03-19 20:32:37 +01:00
public class GenericVideoResolver<T> : BaseVideoResolver<T>
where T : Video, new()
2016-03-19 20:32:37 +01:00
{
2019-02-06 20:38:42 +01:00
public GenericVideoResolver(ILibraryManager libraryManager)
: base(libraryManager)
2016-03-19 20:32:37 +01:00
{
}
}
2013-02-21 02:33:05 +01:00
}