RemoveFromPlaylistRequestDto.cs 734 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Jellyfin.Api.Models.SyncPlayDtos
  4. {
  5. /// <summary>
  6. /// Class RemoveFromPlaylistRequestDto.
  7. /// </summary>
  8. public class RemoveFromPlaylistRequestDto
  9. {
  10. /// <summary>
  11. /// Initializes a new instance of the <see cref="RemoveFromPlaylistRequestDto"/> class.
  12. /// </summary>
  13. public RemoveFromPlaylistRequestDto()
  14. {
  15. PlaylistItemIds = Array.Empty<Guid>();
  16. }
  17. /// <summary>
  18. /// Gets or sets the playlist identifiers ot the items.
  19. /// </summary>
  20. /// <value>The playlist identifiers ot the items.</value>
  21. public IReadOnlyList<Guid> PlaylistItemIds { get; set; }
  22. }
  23. }