namespace MediaBrowser.Model.SyncPlay
{
///
/// Enum SendCommandType.
///
public enum SendCommandType
{
///
/// The play command. Instructs users to start playback.
///
Play = 0,
///
/// The pause command. Instructs users to pause playback.
///
Pause = 1,
///
/// The seek command. Instructs users to seek to a specified time.
///
Seek = 2
}
}