IgnoreWaitRequestDto.cs 353 B

12345678910111213
  1. namespace Jellyfin.Api.Models.SyncPlayDtos;
  2. /// <summary>
  3. /// Class IgnoreWaitRequestDto.
  4. /// </summary>
  5. public class IgnoreWaitRequestDto
  6. {
  7. /// <summary>
  8. /// Gets or sets a value indicating whether the client should be ignored.
  9. /// </summary>
  10. /// <value>The client group-wait status.</value>
  11. public bool IgnoreWait { get; set; }
  12. }