2020-05-06 21:42:53 +00:00
|
|
|
namespace MediaBrowser.Model.SyncPlay
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-15 16:03:58 +00:00
|
|
|
/// Enum SendCommandType.
|
2020-04-01 15:52:42 +00:00
|
|
|
/// </summary>
|
2020-04-15 16:03:58 +00:00
|
|
|
public enum SendCommandType
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The play command. Instructs users to start playback.
|
|
|
|
/// </summary>
|
|
|
|
Play = 0,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The pause command. Instructs users to pause playback.
|
|
|
|
/// </summary>
|
|
|
|
Pause = 1,
|
2020-06-14 10:14:14 +00:00
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The seek command. Instructs users to seek to a specified time.
|
|
|
|
/// </summary>
|
|
|
|
Seek = 2
|
|
|
|
}
|
|
|
|
}
|