2020-12-03 18:01:57 +00:00
|
|
|
namespace Jellyfin.Api.Models.SyncPlayDtos
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
/// Class IgnoreWaitRequestDto.
|
2020-11-28 13:19:24 +00:00
|
|
|
/// </summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
public class IgnoreWaitRequestDto
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <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; }
|
|
|
|
}
|
|
|
|
}
|