cleaned up scene mapping code.

This commit is contained in:
kay.one 2013-03-31 19:43:58 -07:00
parent c1fba9093d
commit 48880e4964
25 changed files with 222 additions and 319 deletions

View file

@ -1,18 +0,0 @@
using System.Linq;
using Newtonsoft.Json;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.ReferenceData
{
public class SceneMapping : ModelBase
{
public string CleanTitle { get; set; }
[JsonProperty("Title")]
public string SceneName { get; set; }
[JsonProperty("Id")]
public int TvdbId { get; set; }
public int SeasonNumber { get; set; }
}
}