Files
jellyfin-jellyfin-1/MediaBrowser.Model/SyncPlay/GroupQueueMode.cs
2020-11-14 23:40:01 +01:00

19 lines
392 B
C#

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
}
}