#nullable disable
using Emby.Naming.Common;
using MediaBrowser.Controller.Entities;
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.
        public GenericVideoResolver(ILogger logger, NamingOptions namingOptions)
            : base(logger, namingOptions)
        {
        }
    }
}