IgnoreWaitRequestDto.cs 399 B

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