//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Jellyfin.Api.Models.StreamingDtos;
using MediaBrowser.Controller.Streaming;
///
/// The hls video request dto.
///
public class HlsVideoRequestDto : VideoRequestDto
{
///
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
///
public bool EnableAdaptiveBitrateStreaming { get; set; }
}