2011-06-14 02:15:55 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2011-06-17 06:04:01 +00:00
|
|
|
|
using PetaPoco;
|
2011-06-14 02:15:55 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
2011-06-17 06:04:01 +00:00
|
|
|
|
[TableName("SceneMappings")]
|
|
|
|
|
[PrimaryKey("CleanTitle", autoIncrement = false)]
|
|
|
|
|
public class SceneMapping
|
2011-06-14 02:15:55 +00:00
|
|
|
|
{
|
2011-06-17 06:04:01 +00:00
|
|
|
|
public virtual string CleanTitle { get; set; }
|
2011-06-14 02:15:55 +00:00
|
|
|
|
|
|
|
|
|
public virtual int SeriesId { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual string SceneName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|