31 lines
918 B
C#
31 lines
918 B
C#
|
using System.Threading;
|
||
|
using MediaBrowser.Model.SyncPlay;
|
||
|
using MediaBrowser.Controller.Session;
|
||
|
|
||
|
namespace MediaBrowser.Controller.SyncPlay
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Class SetShuffleModeGroupRequest.
|
||
|
/// </summary>
|
||
|
public class SetShuffleModeGroupRequest : IPlaybackGroupRequest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the shuffle mode.
|
||
|
/// </summary>
|
||
|
/// <value>The shuffle mode.</value>
|
||
|
public string Mode { get; set; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public PlaybackRequestType GetRequestType()
|
||
|
{
|
||
|
return PlaybackRequestType.SetShuffleMode;
|
||
|
}
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public void Apply(ISyncPlayStateContext context, ISyncPlayState state, SessionInfo session, CancellationToken cancellationToken)
|
||
|
{
|
||
|
state.HandleRequest(context, state.GetGroupState(), this, session, cancellationToken);
|
||
|
}
|
||
|
}
|
||
|
}
|