소스 검색

Add dto changes

cvium 3 년 전
부모
커밋
d995f0e092
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs

+ 10 - 0
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; }
     }
 }