jellyfin/Jellyfin.Api/Models/StreamingDtos/HlsVideoRequestDto.cs
2023-12-21 12:53:50 -05:00

15 lines
386 B
C#

using MediaBrowser.Controller.Streaming;
namespace Jellyfin.Api.Models.StreamingDtos;
/// <summary>
/// The hls video request dto.
/// </summary>
public class HlsVideoRequestDto : VideoRequestDto
{
/// <summary>
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
/// </summary>
public bool EnableAdaptiveBitrateStreaming { get; set; }
}