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:
2026-02-20 16:26:53 -05:00
parent 44ab9e1d6d
commit af1152b001
1436 changed files with 36615 additions and 15508 deletions
+27 -29
View File
@@ -2,36 +2,34 @@
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Enum RequestType.
/// </summary>
public enum RequestType
{
/// <summary>
/// A user is requesting to create a new group.
/// </summary>
NewGroup = 0,
namespace MediaBrowser.Model.SyncPlay;
/// <summary>
/// Enum RequestType.
/// </summary>
public enum RequestType
{
/// <summary>
/// A user is requesting to create a new group.
/// </summary>
NewGroup = 0,
/// <summary>
/// A user is requesting to join a group.
/// </summary>
JoinGroup = 1,
/// <summary>
/// A user is requesting to join a group.
/// </summary>
JoinGroup = 1,
/// <summary>
/// A user is requesting to leave a group.
/// </summary>
LeaveGroup = 2,
/// <summary>
/// A user is requesting to leave a group.
/// </summary>
LeaveGroup = 2,
/// <summary>
/// A user is requesting the list of available groups.
/// </summary>
ListGroups = 3,
/// <summary>
/// A user is requesting the list of available groups.
/// </summary>
ListGroups = 3,
/// <summary>
/// A user is sending a playback command to a group.
/// </summary>
Playback = 4
}
}
/// <summary>
/// A user is sending a playback command to a group.
/// </summary>
Playback = 4,
}