You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Api/Models/SyncPlayDtos/MovePlaylistItemRequestDto.cs

30 lines
744 B

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