jellyfin/Jellyfin.Api/Models/SyncPlayDtos/IgnoreWaitRequestDto.cs

14 lines
353 B
C#
Raw Normal View History

2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class IgnoreWaitRequestDto.
/// </summary>
public class IgnoreWaitRequestDto
{
/// <summary>
2023-01-31 06:18:10 -05:00
/// Gets or sets a value indicating whether the client should be ignored.
/// </summary>
2023-01-31 06:18:10 -05:00
/// <value>The client group-wait status.</value>
public bool IgnoreWait { get; set; }
}