jellyfin/MediaBrowser.Model/Session/PlaystateCommand.cs

42 lines
852 B
C#
Raw Normal View History

2013-05-10 00:43:11 +02: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>
2014-03-28 20:58:18 +01:00
/// The rewind
/// </summary>
Rewind,
/// <summary>
/// The fast forward
/// </summary>
FastForward
2013-05-10 00:43:11 +02:00
}
2014-03-13 10:18:32 +01:00
}