SceneMapping will use the JSON API instead of CSV file now.

This commit is contained in:
Mark McDowall 2012-01-12 19:22:28 -08:00
commit afb8305c00
6 changed files with 50 additions and 40 deletions

View file

@ -1,4 +1,5 @@
using PetaPoco;
using Newtonsoft.Json;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
@ -8,8 +9,10 @@ namespace NzbDrone.Core.Repository
{
public string CleanTitle { get; set; }
[JsonProperty(PropertyName = "Id")]
public int SeriesId { get; set; }
[JsonProperty(PropertyName = "Title")]
public string SceneName { get; set; }
}
}