You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Session/PlayCommand.cs

34 lines
634 B

namespace MediaBrowser.Model.Session
6 years ago
{
/// <summary>
/// Enum PlayCommand.
6 years ago
/// </summary>
public enum PlayCommand
{
/// <summary>
/// The play now.
6 years ago
/// </summary>
PlayNow = 0,
6 years ago
/// <summary>
/// The play next.
6 years ago
/// </summary>
PlayNext = 1,
6 years ago
/// <summary>
/// The play last.
6 years ago
/// </summary>
PlayLast = 2,
6 years ago
/// <summary>
/// The play instant mix.
6 years ago
/// </summary>
PlayInstantMix = 3,
6 years ago
/// <summary>
/// The play shuffle.
6 years ago
/// </summary>
PlayShuffle = 4
}
}