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.
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
// <copyright file="StreamingRequestDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.Streaming;
|
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
|
|
|
/// <summary>
|
|
/// The audio streaming request dto.
|
|
/// </summary>
|
|
public class StreamingRequestDto : BaseEncodingJobOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the params.
|
|
/// </summary>
|
|
public string? Params { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the play session id.
|
|
/// </summary>
|
|
public string? PlaySessionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the tag.
|
|
/// </summary>
|
|
public string? Tag { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the segment container.
|
|
/// </summary>
|
|
public string? SegmentContainer { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the segment length.
|
|
/// </summary>
|
|
public int? SegmentLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the min segments.
|
|
/// </summary>
|
|
public int? MinSegments { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the position of the requested segment in ticks.
|
|
/// </summary>
|
|
public long CurrentRuntimeTicks { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the actual segment length in ticks.
|
|
/// </summary>
|
|
public long ActualSegmentLengthTicks { get; set; }
|
|
}
|