blob: 1cd3d01323bdc5f2b0efa89c5e37c2ba0b3952ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
|