blob: 4c30b7be4348ed72f776f9aef0e0d295a994d9d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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; }
}
}
|