Improved the search UI and made it more consistant.

Finished the Netflix API Part #884
This commit is contained in:
Jamie.Rees 2017-01-16 15:23:04 +00:00
commit 88c0651b1e
9 changed files with 98 additions and 7 deletions

View file

@ -58,5 +58,12 @@ namespace Ombi.Api.Models.Netflix
public string Mediatype { get; set; }
[JsonProperty(PropertyName = "runtime")]
public string Runtime { get; set; }
// For errors
[JsonProperty(PropertyName = "errorcode")]
public int ErrorCode { get; set; }
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
}
}