jellyfin-server/MediaBrowser.Model/SyncPlay/SendCommandType.cs

24 lines
550 B
C#
Raw Normal View History

2020-05-06 21:42:53 +00:00
namespace MediaBrowser.Model.SyncPlay
2020-04-01 15:52:42 +00:00
{
/// <summary>
/// Enum SendCommandType.
2020-04-01 15:52:42 +00:00
/// </summary>
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
}
}