af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
19 lines
535 B
C#
19 lines
535 B
C#
// <copyright file="HlsAudioRequestDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Models.StreamingDtos;
|
|
|
|
using MediaBrowser.Controller.Streaming;
|
|
|
|
/// <summary>
|
|
/// The hls video request dto.
|
|
/// </summary>
|
|
public class HlsAudioRequestDto : StreamingRequestDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether enable adaptive bitrate streaming.
|
|
/// </summary>
|
|
public bool EnableAdaptiveBitrateStreaming { get; set; }
|
|
}
|