renamed imagePath to imageUrl

This commit is contained in:
BaronGreenback 2020-12-31 15:59:48 +00:00
parent 149c2b2169
commit bd1c115e46
1 changed files with 3 additions and 3 deletions

View File

@ -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")] [JsonPropertyName("imageUrl")]
public string? ImagePath { get; set; } public string? ImageUrl { get; set; }
} }
} }