mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			390 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			390 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Streaming;
 | 
						|
 | 
						|
namespace Jellyfin.Api.Models.StreamingDtos;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// The hls video request dto.
 | 
						|
/// </summary>
 | 
						|
public class HlsAudioRequestDto : StreamingRequestDto
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets a value indicating whether enable adaptive bitrate streaming.
 | 
						|
    /// </summary>
 | 
						|
    public bool EnableAdaptiveBitrateStreaming { get; set; }
 | 
						|
}
 |