mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-24 23:15:23 -07:00
Fixed: Don't type Image List to String for Radarr
This commit is contained in:
parent
0396e0ddf3
commit
8a11f9ad1e
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ namespace Ombi.Api.Radarr.Models
|
||||||
|
|
||||||
public RadarrAddMovieResponse()
|
public RadarrAddMovieResponse()
|
||||||
{
|
{
|
||||||
images = new List<string>();
|
images = new List<Image>();
|
||||||
}
|
}
|
||||||
public RadarrError Error { get; set; }
|
public RadarrError Error { get; set; }
|
||||||
public RadarrAddOptions addOptions { get; set; }
|
public RadarrAddOptions addOptions { get; set; }
|
||||||
|
@ -16,7 +16,7 @@ namespace Ombi.Api.Radarr.Models
|
||||||
public int qualityProfileId { get; set; }
|
public int qualityProfileId { get; set; }
|
||||||
public bool monitored { get; set; }
|
public bool monitored { get; set; }
|
||||||
public int tmdbId { get; set; }
|
public int tmdbId { get; set; }
|
||||||
public List<string> images { get; set; }
|
public List<Image> images { get; set; }
|
||||||
public string titleSlug { get; set; }
|
public string titleSlug { get; set; }
|
||||||
public int year { get; set; }
|
public int year { get; set; }
|
||||||
public string minimumAvailability { get; set; }
|
public string minimumAvailability { get; set; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue