HlsAudioRequestDto.cs 348 B

123456789101112
  1. namespace Jellyfin.Api.Models.StreamingDtos;
  2. /// <summary>
  3. /// The hls video request dto.
  4. /// </summary>
  5. public class HlsAudioRequestDto : StreamingRequestDto
  6. {
  7. /// <summary>
  8. /// Gets or sets a value indicating whether enable adaptive bitrate streaming.
  9. /// </summary>
  10. public bool EnableAdaptiveBitrateStreaming { get; set; }
  11. }