namespace MediaBrowser.Model.SyncPlay { /// /// Enum PlaybackRequestType /// public enum PlaybackRequestType { /// /// A user is requesting a play command for the group. /// Play = 0, /// /// A user is requesting a pause command for the group. /// Pause = 1, /// /// A user is requesting a seek command for the group. /// Seek = 2, /// /// A user is signaling that playback is buffering. /// Buffering = 3, /// /// A user is signaling that playback resumed. /// BufferingDone = 4, /// /// A user is reporting its ping. /// UpdatePing = 5 } }