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:
@@ -4,59 +4,57 @@
|
||||
|
||||
#pragma warning disable CS1591
|
||||
|
||||
using System.Collections.Generic;
|
||||
using global::System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Globalization
|
||||
{
|
||||
/// <summary>
|
||||
/// Class CultureDto.
|
||||
/// </summary>
|
||||
public class CultureDto
|
||||
{
|
||||
public CultureDto(string name, string displayName, string twoLetterISOLanguageName, IReadOnlyList<string> threeLetterISOLanguageNames)
|
||||
{
|
||||
Name = name;
|
||||
DisplayName = displayName;
|
||||
TwoLetterISOLanguageName = twoLetterISOLanguageName;
|
||||
ThreeLetterISOLanguageNames = threeLetterISOLanguageNames;
|
||||
}
|
||||
namespace MediaBrowser.Model.Globalization;
|
||||
/// <summary>
|
||||
/// Class CultureDto.
|
||||
/// </summary>
|
||||
public class CultureDto
|
||||
{
|
||||
public CultureDto(string name, string displayName, string twoLetterISOLanguageName, IReadOnlyList<string> threeLetterISOLanguageNames)
|
||||
{
|
||||
Name = name;
|
||||
DisplayName = displayName;
|
||||
TwoLetterISOLanguageName = twoLetterISOLanguageName;
|
||||
ThreeLetterISOLanguageNames = threeLetterISOLanguageNames;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; }
|
||||
/// <summary>
|
||||
/// Gets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the display name.
|
||||
/// </summary>
|
||||
/// <value>The display name.</value>
|
||||
public string DisplayName { get; }
|
||||
/// <summary>
|
||||
/// Gets the display name.
|
||||
/// </summary>
|
||||
/// <value>The display name.</value>
|
||||
public string DisplayName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name of the two letter ISO language.
|
||||
/// </summary>
|
||||
/// <value>The name of the two letter ISO language.</value>
|
||||
public string TwoLetterISOLanguageName { get; }
|
||||
/// <summary>
|
||||
/// Gets the name of the two letter ISO language.
|
||||
/// </summary>
|
||||
/// <value>The name of the two letter ISO language.</value>
|
||||
public string TwoLetterISOLanguageName { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name of the three letter ISO language.
|
||||
/// </summary>
|
||||
/// <value>The name of the three letter ISO language.</value>
|
||||
public string? ThreeLetterISOLanguageName
|
||||
{
|
||||
get
|
||||
{
|
||||
var vals = ThreeLetterISOLanguageNames;
|
||||
if (vals.Count > 0)
|
||||
{
|
||||
return vals[0];
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets the name of the three letter ISO language.
|
||||
/// </summary>
|
||||
/// <value>The name of the three letter ISO language.</value>
|
||||
public string? ThreeLetterISOLanguageName
|
||||
{
|
||||
get
|
||||
{
|
||||
var vals = ThreeLetterISOLanguageNames;
|
||||
if (vals.Count > 0)
|
||||
{
|
||||
return vals[0];
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public IReadOnlyList<string> ThreeLetterISOLanguageNames { get; }
|
||||
}
|
||||
}
|
||||
public IReadOnlyList<string> ThreeLetterISOLanguageNames { get; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user