1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00
Radarr/NzbDrone.Core/Repository/SceneMapping.cs

16 lines
349 B
C#
Raw Normal View History

2011-06-18 03:46:22 +02:00
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; }
}
}