repo creation with initial code after cloning public repo

This commit is contained in:
2026-02-19 07:36:25 -05:00
commit 460884fea3
2860 changed files with 650825 additions and 0 deletions
@@ -0,0 +1,53 @@
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
}
}