Use dedicated resolvers for extras

This commit is contained in:
cvium
2021-12-28 00:37:40 +01:00
parent 4441513ca4
commit 2749509f00
9 changed files with 153 additions and 190 deletions

View File

@@ -0,0 +1,18 @@
#nullable disable
#pragma warning disable CS1591
using Emby.Naming.Common;
using MediaBrowser.Controller.Entities;
namespace Emby.Server.Implementations.Library.Resolvers
{
public class GenericVideoResolver<T> : BaseVideoResolver<T>
where T : Video, new()
{
public GenericVideoResolver(NamingOptions namingOptions)
: base(namingOptions)
{
}
}
}