aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StreamingDtos/HlsVideoRequestDto.cs
blob: 53b6d7575b8b2e5e5d740427a398dc6b2d855dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
}