Browse Source

added refresh buttons to guide and tv pages

Luke Pulverenti 11 năm trước cách đây
mục cha
commit
95be05529a
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      MediaBrowser.Api/VideosService.cs

+ 3 - 0
MediaBrowser.Api/VideosService.cs

@@ -69,6 +69,9 @@ namespace MediaBrowser.Api
         /// <value>The id.</value>
         /// <value>The id.</value>
         [ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
         [ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
         public string Id { get; set; }
         public string Id { get; set; }
+
+        [ApiMember(Name = "IsAlternateEncoding", Description = "Filter by versions that are considered alternate encodings of the original.", IsRequired = true, DataType = "bool", ParameterType = "path", Verb = "GET")]
+        public bool? IsAlternateEncoding { get; set; }
     }
     }
 
 
     public class VideosService : BaseApiService
     public class VideosService : BaseApiService