jellyfin/Jellyfin.Api/Models/StreamingDtos/HlsAudioRequestDto.cs

13 lines
348 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.StreamingDtos;
/// <summary>
/// The hls video request dto.
/// </summary>
public class HlsAudioRequestDto : StreamingRequestDto
2020-07-31 23:09:17 +02:00
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
2020-07-31 23:09:17 +02:00
/// </summary>
2023-01-31 12:18:10 +01:00
public bool EnableAdaptiveBitrateStreaming { get; set; }
2020-07-31 23:09:17 +02:00
}