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