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.
34 lines
1.1 KiB
34 lines
1.1 KiB
using System.Threading;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Class MovePlaylistItemGroupRequest.
|
|
/// </summary>
|
|
public class MovePlaylistItemGroupRequest : IGroupPlaybackRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the playlist identifier of the item.
|
|
/// </summary>
|
|
/// <value>The playlist identifier of the item.</value>
|
|
public string PlaylistItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the new position.
|
|
/// </summary>
|
|
/// <value>The new position.</value>
|
|
public int NewIndex { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public PlaybackRequestType Type { get; } = PlaybackRequestType.MovePlaylistItem;
|
|
|
|
/// <inheritdoc />
|
|
public void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken)
|
|
{
|
|
state.HandleRequest(context, state.Type, this, session, cancellationToken);
|
|
}
|
|
}
|
|
}
|