aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/IgnoreWaitRequestDto.cs
blob: 8ccd831bdd6f6634adbef44ba5fd44eb21458b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Jellyfin.Api.Models.SyncPlayDtos;

/// <summary>
/// Class IgnoreWaitRequestDto.
/// </summary>
public class IgnoreWaitRequestDto
{
    /// <summary>
    /// Gets or sets a value indicating whether the client should be ignored.
    /// </summary>
    /// <value>The client group-wait status.</value>
    public bool IgnoreWait { get; set; }
}