aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/GroupQueueMode.cs
blob: 5c9c2627b9fe965af539186cfe286e8bfb2f9242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.SyncPlay
{
    /// <summary>
    /// Enum GroupQueueMode.
    /// </summary>
    public enum GroupQueueMode
    {
        /// <summary>
        /// Insert items at the end of the queue.
        /// </summary>
        Queue = 0,

        /// <summary>
        /// Insert items after the currently playing item.
        /// </summary>
        QueueNext = 1
    }
}