#nullable disable
using Emby.Naming.Common;
using MediaBrowser.Controller.Entities;
namespace Emby.Server.Implementations.Library.Resolvers
{
///
/// Resolves a Path into an instance of the class.
///
/// The type of item to resolve.
public class GenericVideoResolver : BaseVideoResolver
where T : Video, new()
{
///
/// Initializes a new instance of the class.
///
/// The naming options.
public GenericVideoResolver(NamingOptions namingOptions)
: base(namingOptions)
{
}
}
}