support drag and drop for playlist items

This commit is contained in:
Luke Pulverenti
2015-10-15 01:48:03 -04:00
parent b830f5f1cf
commit 6c3355b26f
4 changed files with 60 additions and 1 deletions

View File

@@ -45,5 +45,13 @@ namespace MediaBrowser.Controller.Playlists
/// <returns>Folder.</returns>
Folder GetPlaylistsFolder(string userId);
/// <summary>
/// Moves the item.
/// </summary>
/// <param name="playlistId">The playlist identifier.</param>
/// <param name="entryId">The entry identifier.</param>
/// <param name="newIndex">The new index.</param>
/// <returns>Task.</returns>
Task MoveItem(string playlistId, string entryId, int newIndex);
}
}