You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/SyncPlay/PlaybackRequestType.cs

39 lines
894 B

namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
4 years ago
/// Enum PlaybackRequestType.
/// </summary>
public enum PlaybackRequestType
{
/// <summary>
/// A user is requesting a play command for the group.
/// </summary>
Play = 0,
4 years ago
/// <summary>
/// A user is requesting a pause command for the group.
/// </summary>
Pause = 1,
4 years ago
/// <summary>
/// A user is requesting a seek command for the group.
/// </summary>
Seek = 2,
4 years ago
/// <summary>
/// A user is signaling that playback is buffering.
/// </summary>
Buffer = 3,
4 years ago
/// <summary>
/// A user is signaling that playback resumed.
/// </summary>
Ready = 4,
4 years ago
/// <summary>
/// A user is reporting its ping.
/// </summary>
Ping = 5
}
}