//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.SyncPlay
{
///
/// Enum GroupRepeatMode.
///
public enum GroupRepeatMode
{
///
/// Repeat one item only.
///
RepeatOne = 0,
///
/// Cycle the playlist.
///
RepeatAll = 1,
///
/// Do not repeat.
///
RepeatNone = 2
}
}