mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
19 lines
407 B
C#
19 lines
407 B
C#
|
|
#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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|