namespace MediaBrowser.Model.Syncplay { /// /// Enum SyncplayRequestType /// public enum SyncplayRequestType { /// /// 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. /// BufferingComplete = 4, /// /// A user is reporting its ping. /// KeepAlive = 5 } }