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