2012-01-13 04:22:28 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using PetaPoco;
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
2011-06-17 08:04:01 +02:00
|
|
|
|
[TableName("SceneMappings")]
|
|
|
|
|
[PrimaryKey("CleanTitle", autoIncrement = false)]
|
|
|
|
|
public class SceneMapping
|
2011-06-14 04:15:55 +02:00
|
|
|
|
{
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public string CleanTitle { get; set; }
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
2012-01-13 04:22:28 +01:00
|
|
|
|
[JsonProperty(PropertyName = "Id")]
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public int SeriesId { get; set; }
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
2012-01-13 04:22:28 +01:00
|
|
|
|
[JsonProperty(PropertyName = "Title")]
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public string SceneName { get; set; }
|
2012-12-25 09:05:13 +01:00
|
|
|
|
|
|
|
|
|
[JsonProperty(PropertyName = "Season")]
|
|
|
|
|
public int SeasonNumber { get; set; }
|
2011-06-14 04:15:55 +02:00
|
|
|
|
}
|
2011-06-18 06:39:02 +02:00
|
|
|
|
}
|