Files
pgsql-jellyfin/MediaBrowser.Model/Session/PlaystateCommand.cs
T

58 lines
1.1 KiB
C#

// <copyright file="PlaystateCommand.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
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,
/// <summary>
/// The play pause.
/// </summary>
PlayPause
}
}