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.
///
Buffer = 3,
///
/// A user is signaling that playback resumed.
///
Ready = 4,
///
/// A user is reporting its ping.
///
Ping = 5
}
}