namespace MediaBrowser.Model.SyncPlay
{
///
/// Enum GroupState.
///
public enum GroupStateType
{
///
/// The group is in idle state. No media is playing.
///
Idle = 0,
///
/// The group is in wating state. Playback is paused. Will start playing when users are ready.
///
Waiting = 1,
///
/// The group is in paused state. Playback is paused. Will resume on play command.
///
Paused = 2,
///
/// The group is in playing state. Playback is advancing.
///
Playing = 3
}
}