namespace Jellyfin.Api.Models.StreamingDtos
{
    /// 
    /// The video request dto.
    /// 
    public class VideoRequestDto : StreamingRequestDto
    {
        /// 
        /// Gets a value indicating whether this instance has fixed resolution.
        /// 
        /// true if this instance has fixed resolution; otherwise, false.
        public bool HasFixedResolution => Width.HasValue || Height.HasValue;
        /// 
        /// Gets or sets a value indicating whether to enable subtitles in the manifest.
        /// 
        public bool EnableSubtitlesInManifest { get; set; }
    }
}