Refactor: standardize namespace and using directive style
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.
This commit is contained in:
@@ -2,36 +2,34 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
using System.Collections.Generic;
|
||||
namespace MediaBrowser.Model.Search;
|
||||
using global::System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Search
|
||||
{
|
||||
/// <summary>
|
||||
/// Class SearchHintResult.
|
||||
/// </summary>
|
||||
public class SearchHintResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SearchHintResult" /> class.
|
||||
/// </summary>
|
||||
/// <param name="searchHints">The search hints.</param>
|
||||
/// <param name="totalRecordCount">The total record count.</param>
|
||||
public SearchHintResult(IReadOnlyList<SearchHint> searchHints, int totalRecordCount)
|
||||
{
|
||||
SearchHints = searchHints;
|
||||
TotalRecordCount = totalRecordCount;
|
||||
}
|
||||
/// <summary>
|
||||
/// Class SearchHintResult.
|
||||
/// </summary>
|
||||
public class SearchHintResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SearchHintResult" /> class.
|
||||
/// </summary>
|
||||
/// <param name="searchHints">The search hints.</param>
|
||||
/// <param name="totalRecordCount">The total record count.</param>
|
||||
public SearchHintResult(IReadOnlyList<SearchHint> searchHints, int totalRecordCount)
|
||||
{
|
||||
SearchHints = searchHints;
|
||||
TotalRecordCount = totalRecordCount;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the search hints.
|
||||
/// </summary>
|
||||
/// <value>The search hints.</value>
|
||||
public IReadOnlyList<SearchHint> SearchHints { get; }
|
||||
/// <summary>
|
||||
/// Gets the search hints.
|
||||
/// </summary>
|
||||
/// <value>The search hints.</value>
|
||||
public IReadOnlyList<SearchHint> SearchHints { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the total record count.
|
||||
/// </summary>
|
||||
/// <value>The total record count.</value>
|
||||
public int TotalRecordCount { get; }
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets the total record count.
|
||||
/// </summary>
|
||||
/// <value>The total record count.</value>
|
||||
public int TotalRecordCount { get; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user