diff --git a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs index 6a11b87b4..4982e02da 100644 --- a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs +++ b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs @@ -29,47 +29,47 @@ namespace NzbDrone.Core.NetImport.CouchPotato public class Info { public string[] genres { get; set; } - public int tmdb_id { get; set; } + public int? tmdb_id { get; set; } public string plot { get; set; } public string tagline { get; set; } - public int year { get; set; } + public int? year { get; set; } public string original_title { get; set; } - public bool via_imdb { get; set; } + public bool? via_imdb { get; set; } public string[] directors { get; set; } public string[] titles { get; set; } public string imdb { get; set; } public string mpaa { get; set; } - public bool via_tmdb { get; set; } + public bool? via_tmdb { get; set; } public string[] actors { get; set; } public string[] writers { get; set; } - public int runtime { get; set; } + public int? runtime { get; set; } public string type { get; set; } public string released { get; set; } } public class ReleaseInfo { - public double size { get; set; } - public int seeders { get; set; } + public double? size { get; set; } + public int? seeders { get; set; } public string protocol { get; set; } public string description { get; set; } public string url { get; set; } - public int age { get; set; } + public int? age { get; set; } public string id { get; set; } - public int leechers { get; set; } - public int score { get; set; } + public int? leechers { get; set; } + public int? score { get; set; } public string provider { get; set; } public int? seed_time { get; set; } public string provider_extra { get; set; } public string detail_url { get; set; } public string type { get; set; } - public double seed_ratio { get; set; } + public double? seed_ratio { get; set; } public string name { get; set; } } public class DownloadInfo { - public bool status_support { get; set; } + public bool? status_support { get; set; } public string id { get; set; } public string downloader { get; set; } } @@ -83,8 +83,8 @@ namespace NzbDrone.Core.NetImport.CouchPotato public string media_id { get; set; } public string _rev { get; set; } public string _t { get; set; } - public bool is_3d { get; set; } - public int last_edit { get; set; } + public bool? is_3d { get; set; } + public int? last_edit { get; set; } public string identifier { get; set; } public string quality { get; set; } }