diff options
| author | cvium <clausvium@gmail.com> | 2021-09-23 15:51:46 +0200 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-09-23 15:51:46 +0200 |
| commit | d995f0e092f997930e6561a343072c26f100bb35 (patch) | |
| tree | b0eb8316a0c28c03bbb9b41c50a45f04115c89da /Jellyfin.Api/Models/StreamingDtos | |
| parent | 6e77d5056359ff8581ef00dc02b029286177d59b (diff) | |
Add dto changes
Diffstat (limited to 'Jellyfin.Api/Models/StreamingDtos')
| -rw-r--r-- | Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs | 10 |
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; } } } |
