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
888 B
C#
29 lines
888 B
C#
namespace Emby.Server.Implementations.Library.Resolvers
|
|
{
|
|
#nullable disable
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Resolvers;
|
|
|
|
/// <summary>
|
|
/// Class FolderResolver.
|
|
/// </summary>
|
|
/// <typeparam name="TItemType">The type of the T item type.</typeparam>
|
|
public abstract class GenericFolderResolver<TItemType> : ItemResolver<TItemType>
|
|
where TItemType : Folder, new()
|
|
{
|
|
/// <summary>
|
|
/// Sets the initial item values.
|
|
/// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="args">The args.</param>
|
|
protected override void SetInitialItemValues(TItemType item, ItemResolveArgs args)
|
|
{
|
|
base.SetInitialItemValues(item, args);
|
|
|
|
item.IsRoot = args.Parent is null;
|
|
}
|
|
}
|
|
}
|