jellyfin/MediaBrowser.Model/Session/PlaystateCommand.cs

59 lines
1.3 KiB
C#
Raw Normal View History

2013-05-09 22:43:11 +00:00

namespace MediaBrowser.Model.Session
{
/// <summary>
/// Enum PlaystateCommand
/// </summary>
public enum PlaystateCommand
{
/// <summary>
/// The stop
/// </summary>
Stop,
/// <summary>
/// The pause
/// </summary>
Pause,
/// <summary>
/// The unpause
/// </summary>
Unpause,
/// <summary>
/// The next track
/// </summary>
NextTrack,
/// <summary>
/// The previous track
/// </summary>
PreviousTrack,
/// <summary>
/// The seek
/// </summary>
Seek,
/// <summary>
/// The fullscreen
/// </summary>
2014-03-28 19:58:18 +00:00
Fullscreen,
/// <summary>
/// The rewind
/// </summary>
Rewind,
/// <summary>
/// The fast forward
/// </summary>
FastForward
2013-05-09 22:43:11 +00:00
}
2013-07-09 16:16:52 +00:00
public class PlaystateRequest
{
public PlaystateCommand Command { get; set; }
public long? SeekPositionTicks { get; set; }
/// <summary>
/// Gets or sets the controlling user identifier.
/// </summary>
/// <value>The controlling user identifier.</value>
public string ControllingUserId { get; set; }
}
2014-03-13 09:18:32 +00:00
}