mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-01 21:38:27 +01:00
Add GPL modules
This commit is contained in:
43
MediaBrowser.Model/Session/PlaystateCommand.cs
Normal file
43
MediaBrowser.Model/Session/PlaystateCommand.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
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 rewind
|
||||
/// </summary>
|
||||
Rewind,
|
||||
/// <summary>
|
||||
/// The fast forward
|
||||
/// </summary>
|
||||
FastForward,
|
||||
PlayPause
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user