af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
namespace Emby.Server.Implementations.Library.Resolvers
|
|
{
|
|
#nullable disable
|
|
|
|
using Emby.Naming.Common;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
/// <summary>
|
|
/// Resolves a Path into an instance of the <see cref="Video"/> class.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of item to resolve.</typeparam>
|
|
public class GenericVideoResolver<T> : BaseVideoResolver<T>
|
|
where T : Video, new()
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="GenericVideoResolver{T}"/> class.
|
|
/// </summary>
|
|
/// <param name="logger">The logger.</param>
|
|
/// <param name="namingOptions">The naming options.</param>
|
|
/// <param name="directoryService">The directory service.</param>
|
|
public GenericVideoResolver(ILogger logger, NamingOptions namingOptions, IDirectoryService directoryService)
|
|
: base(logger, namingOptions, directoryService)
|
|
{
|
|
}
|
|
}
|
|
}
|