jellyfin/MediaBrowser.Model/SyncPlay/SendCommandType.cs

29 lines
686 B
C#
Raw Normal View History

2020-05-06 17:42:53 -04:00
namespace MediaBrowser.Model.SyncPlay
2020-04-01 11:52:42 -04:00
{
/// <summary>
/// Enum SendCommandType.
2020-04-01 11:52:42 -04:00
/// </summary>
public enum SendCommandType
2020-04-01 11:52:42 -04:00
{
/// <summary>
/// The unpause command. Instructs users to unpause playback.
2020-04-01 11:52:42 -04:00
/// </summary>
Unpause = 0,
2020-06-14 06:14:14 -04:00
2020-04-01 11:52:42 -04:00
/// <summary>
/// The pause command. Instructs users to pause playback.
/// </summary>
Pause = 1,
2020-06-14 06:14:14 -04:00
/// <summary>
/// The stop command. Instructs users to stop playback.
/// </summary>
Stop = 2,
2020-04-01 11:52:42 -04:00
/// <summary>
/// The seek command. Instructs users to seek to a specified time.
/// </summary>
Seek = 3
2020-04-01 11:52:42 -04:00
}
}