Add PlaybackOrder to Session state

This commit is contained in:
Damian Kacperski
2024-02-09 20:41:32 +01:00
parent fd116e7616
commit 59a9586dbd
5 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Enum PlaybackOrder.
/// </summary>
public enum PlaybackOrder
{
/// <summary>
/// Sorted playlist.
/// </summary>
Default = 0,
/// <summary>
/// Shuffled playlist.
/// </summary>
Shuffle = 1
}
}