You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
353 B
14 lines
353 B
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; }
|
|
}
|