aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/PlayQueueUpdateReason.cs
blob: b609f4b1bdcf490ad61ce19fbb7a7dd4b38d16a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
    }
}