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

14 lines
390 B
C#
Raw Normal View History

2020-07-31 23:09:17 +02:00
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; }
}
}