#nullable disable using Emby.Naming.Common; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using Microsoft.Extensions.Logging; 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 logger. /// The naming options. /// The directory service. public GenericVideoResolver(ILogger logger, NamingOptions namingOptions, IDirectoryService directoryService) : base(logger, namingOptions, directoryService) { } } }