mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-30 07:22:35 +01:00
16 lines
349 B
C#
16 lines
349 B
C#
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
[TableName("SceneMappings")]
|
|
[PrimaryKey("CleanTitle", autoIncrement = false)]
|
|
public class SceneMapping
|
|
{
|
|
public virtual string CleanTitle { get; set; }
|
|
|
|
public virtual int SeriesId { get; set; }
|
|
|
|
public virtual string SceneName { get; set; }
|
|
}
|
|
}
|