jellyfin/Jellyfin.Api/Models/StreamingDtos/HlsAudioRequestDto.cs
2023-02-02 18:50:33 +01:00

13 lines
348 B
C#

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; }
}