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.
31 lines
913 B
31 lines
913 B
4 years ago
|
using System.Threading;
|
||
|
using MediaBrowser.Model.SyncPlay;
|
||
|
using MediaBrowser.Controller.Session;
|
||
|
|
||
|
namespace MediaBrowser.Controller.SyncPlay
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Class SetRepeatModeGroupRequest.
|
||
|
/// </summary>
|
||
|
public class SetRepeatModeGroupRequest : IPlaybackGroupRequest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the repeat mode.
|
||
|
/// </summary>
|
||
|
/// <value>The repeat mode.</value>
|
||
|
public string Mode { get; set; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public PlaybackRequestType GetRequestType()
|
||
|
{
|
||
|
return PlaybackRequestType.SetRepeatMode;
|
||
|
}
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public void Apply(ISyncPlayStateContext context, ISyncPlayState state, SessionInfo session, CancellationToken cancellationToken)
|
||
|
{
|
||
|
state.HandleRequest(context, state.GetGroupState(), this, session, cancellationToken);
|
||
|
}
|
||
|
}
|
||
|
}
|