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

24 lines
600 B
C#
Raw Normal View History

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