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,46 +2,44 @@
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum UserDataSaveReason.
|
||||
/// </summary>
|
||||
public enum UserDataSaveReason
|
||||
{
|
||||
/// <summary>
|
||||
/// The playback start.
|
||||
/// </summary>
|
||||
PlaybackStart = 1,
|
||||
namespace MediaBrowser.Model.Entities;
|
||||
/// <summary>
|
||||
/// Enum UserDataSaveReason.
|
||||
/// </summary>
|
||||
public enum UserDataSaveReason
|
||||
{
|
||||
/// <summary>
|
||||
/// The playback start.
|
||||
/// </summary>
|
||||
PlaybackStart = 1,
|
||||
|
||||
/// <summary>
|
||||
/// The playback progress.
|
||||
/// </summary>
|
||||
PlaybackProgress = 2,
|
||||
/// <summary>
|
||||
/// The playback progress.
|
||||
/// </summary>
|
||||
PlaybackProgress = 2,
|
||||
|
||||
/// <summary>
|
||||
/// The playback finished.
|
||||
/// </summary>
|
||||
PlaybackFinished = 3,
|
||||
/// <summary>
|
||||
/// The playback finished.
|
||||
/// </summary>
|
||||
PlaybackFinished = 3,
|
||||
|
||||
/// <summary>
|
||||
/// The toggle played.
|
||||
/// </summary>
|
||||
TogglePlayed = 4,
|
||||
/// <summary>
|
||||
/// The toggle played.
|
||||
/// </summary>
|
||||
TogglePlayed = 4,
|
||||
|
||||
/// <summary>
|
||||
/// The update user rating.
|
||||
/// </summary>
|
||||
UpdateUserRating = 5,
|
||||
/// <summary>
|
||||
/// The update user rating.
|
||||
/// </summary>
|
||||
UpdateUserRating = 5,
|
||||
|
||||
/// <summary>
|
||||
/// The import.
|
||||
/// </summary>
|
||||
Import = 6,
|
||||
/// <summary>
|
||||
/// The import.
|
||||
/// </summary>
|
||||
Import = 6,
|
||||
|
||||
/// <summary>
|
||||
/// API call updated item user data.
|
||||
/// </summary>
|
||||
UpdateUserData = 7,
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// API call updated item user data.
|
||||
/// </summary>
|
||||
UpdateUserData = 7,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user