SceneMapping uses new API endpoint

This commit is contained in:
Mark McDowall
2013-09-05 23:25:34 -07:00
parent a39125eb6c
commit e07b588fd8
3 changed files with 4 additions and 7 deletions
@@ -5,15 +5,15 @@ namespace NzbDrone.Core.DataAugmentation.Scene
{
public class SceneMapping : ModelBase
{
[JsonProperty("CleanTitle")]
[JsonProperty("title")]
public string ParseTerm { get; set; }
[JsonProperty("Title")]
[JsonProperty("searchTitle")]
public string SearchTerm { get; set; }
[JsonProperty("Id")]
public int TvdbId { get; set; }
[JsonProperty("season")]
public int SeasonNumber { get; set; }
}
}