mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 11:13:32 +01:00
Display client version in the dashboard
This commit is contained in:
41
MediaBrowser.Model/Session/PlaystateCommand.cs
Normal file
41
MediaBrowser.Model/Session/PlaystateCommand.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
public class PlayStateRequest
|
||||
{
|
||||
public PlaystateCommand Command { get; set; }
|
||||
|
||||
public long? SeekPosition { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user