jellyfin/Jellyfin.Api/Models/SyncPlayDtos/MovePlaylistItemRequestDto.cs

30 lines
744 B
C#
Raw Normal View History

2020-12-04 20:15:16 +01:00
using System;
2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class MovePlaylistItemRequestDto.
/// </summary>
public class MovePlaylistItemRequestDto
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Initializes a new instance of the <see cref="MovePlaylistItemRequestDto"/> class.
/// </summary>
2023-01-31 12:18:10 +01:00
public MovePlaylistItemRequestDto()
{
2023-01-31 12:18:10 +01:00
PlaylistItemId = Guid.Empty;
}
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the playlist identifier of the item.
/// </summary>
/// <value>The playlist identifier of the item.</value>
public Guid PlaylistItemId { get; set; }
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the new position.
/// </summary>
/// <value>The new position.</value>
public int NewIndex { get; set; }
}