mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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; }
 | 
						|
}
 |