ソースを参照

rename SeekPosition to SeekPositionTicks

Luke Pulverenti 12 年 前
コミット
2aaf939f22

+ 3 - 3
MediaBrowser.Api/SessionsService.cs

@@ -119,8 +119,8 @@ namespace MediaBrowser.Api
         /// <summary>
         /// <summary>
         /// Gets or sets the position to seek to
         /// Gets or sets the position to seek to
         /// </summary>
         /// </summary>
-        [ApiMember(Name = "SeekPosition", Description = "The position to seek to.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
-        public long? SeekPosition { get; set; }
+        [ApiMember(Name = "SeekPositionTicks", Description = "The position to seek to.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
+        public long? SeekPositionTicks { get; set; }
 
 
         /// <summary>
         /// <summary>
         /// Gets or sets the play command.
         /// Gets or sets the play command.
@@ -200,7 +200,7 @@ namespace MediaBrowser.Api
                         Data = new PlaystateRequest
                         Data = new PlaystateRequest
                         {
                         {
                             Command = request.Command,
                             Command = request.Command,
-                            SeekPosition = request.SeekPosition
+                            SeekPositionTicks = request.SeekPositionTicks
                         }
                         }
 
 
                     }, CancellationToken.None).ConfigureAwait(false);
                     }, CancellationToken.None).ConfigureAwait(false);

+ 0 - 1
MediaBrowser.Controller/Entities/Movies/Movie.cs

@@ -3,7 +3,6 @@ using System;
 using System.Collections.Generic;
 using System.Collections.Generic;
 using System.IO;
 using System.IO;
 using System.Linq;
 using System.Linq;
-using System.Runtime.Serialization;
 using System.Threading;
 using System.Threading;
 using System.Threading.Tasks;
 using System.Threading.Tasks;
 
 

+ 1 - 1
MediaBrowser.Model/Session/PlaystateCommand.cs

@@ -36,6 +36,6 @@ namespace MediaBrowser.Model.Session
     {
     {
         public PlaystateCommand Command { get; set; }
         public PlaystateCommand Command { get; set; }
 
 
-        public long? SeekPosition { get; set; }
+        public long? SeekPositionTicks { get; set; }
     }
     }
 }
 }

+ 2 - 1
MediaBrowser.Server.Implementations/Sorting/OfficialRatingComparer.cs

@@ -1,4 +1,5 @@
-using MediaBrowser.Controller.Entities;
+using System;
+using MediaBrowser.Controller.Entities;
 using MediaBrowser.Controller.Localization;
 using MediaBrowser.Controller.Localization;
 using MediaBrowser.Controller.Sorting;
 using MediaBrowser.Controller.Sorting;
 using MediaBrowser.Model.Querying;
 using MediaBrowser.Model.Querying;