jellyfin/MediaBrowser.Model/SyncPlay/SendCommandType.cs

22 lines
548 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 play command. Instructs users to start playback.
/// </summary>
Play = 0,
/// <summary>
/// The pause command. Instructs users to pause playback.
/// </summary>
Pause = 1,
/// <summary>
/// The seek command. Instructs users to seek to a specified time.
/// </summary>
Seek = 2
}
}