Add dto changes

This commit is contained in:
cvium 2021-09-23 15:51:46 +02:00
parent 6e77d50563
commit d995f0e092
1 changed files with 10 additions and 0 deletions

View File

@ -41,5 +41,15 @@ namespace Jellyfin.Api.Models.StreamingDtos
/// 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; }
}
}