SetPlaylistItemRequestDto.cs 600 B

1234567891011121314151617181920212223
  1. using System;
  2. namespace Jellyfin.Api.Models.SyncPlayDtos;
  3. /// <summary>
  4. /// Class SetPlaylistItemRequestDto.
  5. /// </summary>
  6. public class SetPlaylistItemRequestDto
  7. {
  8. /// <summary>
  9. /// Initializes a new instance of the <see cref="SetPlaylistItemRequestDto"/> class.
  10. /// </summary>
  11. public SetPlaylistItemRequestDto()
  12. {
  13. PlaylistItemId = Guid.Empty;
  14. }
  15. /// <summary>
  16. /// Gets or sets the playlist identifier of the playing item.
  17. /// </summary>
  18. /// <value>The playlist identifier of the playing item.</value>
  19. public Guid PlaylistItemId { get; set; }
  20. }