namespace Jellyfin.Api.Models.StreamingDtos
{
///
/// The hls video request dto.
///
public class HlsAudioRequestDto : StreamingRequestDto
{
///
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
///
public bool EnableAdaptiveBitrateStreaming { get; set; }
}
}