SetPlaylistItemRequestDto.cs 674 B

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