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

15 lines
390 B
C#
Raw Normal View History

2023-10-31 13:26:37 -04:00
using MediaBrowser.Controller.Streaming;
namespace Jellyfin.Api.Models.StreamingDtos;
2023-01-31 06:18:10 -05:00
/// <summary>
/// The hls video request dto.
/// </summary>
public class HlsAudioRequestDto : StreamingRequestDto
2020-07-31 17:09:17 -04:00
{
/// <summary>
2023-01-31 06:18:10 -05:00
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
2020-07-31 17:09:17 -04:00
/// </summary>
2023-01-31 06:18:10 -05:00
public bool EnableAdaptiveBitrateStreaming { get; set; }
2020-07-31 17:09:17 -04:00
}