aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-09-23 15:51:46 +0200
committercvium <clausvium@gmail.com>2021-09-23 15:51:46 +0200
commitd995f0e092f997930e6561a343072c26f100bb35 (patch)
treeb0eb8316a0c28c03bbb9b41c50a45f04115c89da
parent6e77d5056359ff8581ef00dc02b029286177d59b (diff)
Add dto changes
-rw-r--r--Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs b/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
index 1791b0370..f8b0212b6 100644
--- a/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
+++ b/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
@@ -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; }
}
}