namespace Jellyfin.Api.Models.SyncPlayDtos
{
///
/// Class MovePlaylistItemRequestDto.
///
public class MovePlaylistItemRequestDto
{
///
/// Initializes a new instance of the class.
///
public MovePlaylistItemRequestDto()
{
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; }
}
}