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

19 lines
404 B
C#
Raw Normal View History

#nullable disable
2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using Emby.Naming.Common;
using MediaBrowser.Controller.Entities;
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
{
public GenericVideoResolver(NamingOptions namingOptions)
: base(namingOptions)
2016-03-19 20:32:37 +01:00
{
}
}
2013-02-21 02:33:05 +01:00
}