mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-18 06:39:42 +01:00
29 lines
840 B
C#
29 lines
840 B
C#
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
|
{
|
|
/// <summary>
|
|
/// Class MovePlaylistItemRequestBody.
|
|
/// </summary>
|
|
public class MovePlaylistItemRequestBody
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MovePlaylistItemRequestBody"/> class.
|
|
/// </summary>
|
|
public MovePlaylistItemRequestBody()
|
|
{
|
|
PlaylistItemId = string.Empty;
|
|
}
|
|
|
|
/// <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; }
|
|
}
|
|
}
|