//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.SyncPlay;
///
/// Enum GroupQueueMode.
///
public enum GroupQueueMode
{
///
/// Insert items at the end of the queue.
///
Queue = 0,
///
/// Insert items after the currently playing item.
///
QueueNext = 1,
}