瀏覽代碼

renamed imagePath to imageUrl

BaronGreenback 4 年之前
父節點
當前提交
bd1c115e46
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      MediaBrowser.Model/Updates/PackageInfo.cs

+ 3 - 3
MediaBrowser.Model/Updates/PackageInfo.cs

@@ -77,9 +77,9 @@ namespace MediaBrowser.Model.Updates
 #pragma warning restore CA2227 // Collection properties should be read only
 #pragma warning restore CA2227 // Collection properties should be read only
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the image path for the package.
+        /// Gets or sets the image url for the package.
         /// </summary>
         /// </summary>
-        [JsonPropertyName("imagePath")]
-        public string? ImagePath { get; set; }
+        [JsonPropertyName("imageUrl")]
+        public string? ImageUrl { get; set; }
     }
     }
 }
 }