namespace MediaBrowser.Model.SyncPlay.RequestBodies
{
///
/// Class MovePlaylistItemRequestBody.
///
public class MovePlaylistItemRequestBody
{
///
/// Initializes a new instance of the class.
///
public MovePlaylistItemRequestBody()
{
PlaylistItemId = string.Empty;
}
///
/// Gets or sets the playlist identifier of the item.
///
/// The playlist identifier of the item.
public string PlaylistItemId { get; set; }
///
/// Gets or sets the new position.
///
/// The new position.
public int NewIndex { get; set; }
}
}