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.
61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
// <copyright file="PlayQueueUpdateReason.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Model.SyncPlay;
|
|
/// <summary>
|
|
/// Enum PlayQueueUpdateReason.
|
|
/// </summary>
|
|
public enum PlayQueueUpdateReason
|
|
{
|
|
/// <summary>
|
|
/// A user is requesting to play a new playlist.
|
|
/// </summary>
|
|
NewPlaylist = 0,
|
|
|
|
/// <summary>
|
|
/// A user is changing the playing item.
|
|
/// </summary>
|
|
SetCurrentItem = 1,
|
|
|
|
/// <summary>
|
|
/// A user is removing items from the playlist.
|
|
/// </summary>
|
|
RemoveItems = 2,
|
|
|
|
/// <summary>
|
|
/// A user is moving an item in the playlist.
|
|
/// </summary>
|
|
MoveItem = 3,
|
|
|
|
/// <summary>
|
|
/// A user is adding items the queue.
|
|
/// </summary>
|
|
Queue = 4,
|
|
|
|
/// <summary>
|
|
/// A user is adding items to the queue, after the currently playing item.
|
|
/// </summary>
|
|
QueueNext = 5,
|
|
|
|
/// <summary>
|
|
/// A user is requesting the next item in queue.
|
|
/// </summary>
|
|
NextItem = 6,
|
|
|
|
/// <summary>
|
|
/// A user is requesting the previous item in queue.
|
|
/// </summary>
|
|
PreviousItem = 7,
|
|
|
|
/// <summary>
|
|
/// A user is changing repeat mode.
|
|
/// </summary>
|
|
RepeatMode = 8,
|
|
|
|
/// <summary>
|
|
/// A user is changing shuffle mode.
|
|
/// </summary>
|
|
ShuffleMode = 9,
|
|
}
|