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