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