mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Workaround for #440
This commit is contained in:
parent
b3e90c7a7f
commit
4392219823
1 changed files with 5 additions and 0 deletions
|
@ -24,6 +24,10 @@ namespace PlexRequests.Api.Models.Sonarr
|
||||||
|
|
||||||
public class SonarrAddSeries
|
public class SonarrAddSeries
|
||||||
{
|
{
|
||||||
|
public SonarrAddSeries()
|
||||||
|
{
|
||||||
|
images = new List<string>();
|
||||||
|
}
|
||||||
public AddOptions addOptions { get; set; }
|
public AddOptions addOptions { get; set; }
|
||||||
public string title { get; set; }
|
public string title { get; set; }
|
||||||
public List<Season> seasons { get; set; }
|
public List<Season> seasons { get; set; }
|
||||||
|
@ -37,6 +41,7 @@ namespace PlexRequests.Api.Models.Sonarr
|
||||||
public string imdbId { get; set; }
|
public string imdbId { get; set; }
|
||||||
public string titleSlug { get; set; }
|
public string titleSlug { get; set; }
|
||||||
public int id { get; set; }
|
public int id { get; set; }
|
||||||
|
public List<string> images { get; set; }
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public List<string> ErrorMessages { get; set; }
|
public List<string> ErrorMessages { get; set; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue