using System;
namespace Jellyfin.Api.Models.SyncPlayDtos
{
///
/// Class MovePlaylistItemRequestDto.
///
public class MovePlaylistItemRequestDto
{
///
/// Initializes a new instance of the class.
///
public MovePlaylistItemRequestDto()
{
PlaylistItemId = Guid.Empty;
}
///
/// Gets or sets the playlist identifier of the item.
///
/// The playlist identifier of the item.
public Guid PlaylistItemId { get; set; }
///
/// Gets or sets the new position.
///
/// The new position.
public int NewIndex { get; set; }
}
}