1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00
Sonarr/NzbDrone.Core/Repository/SceneMapping.cs

15 lines
324 B
C#
Raw Normal View History

2011-06-18 04:46:22 +03:00
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("SceneMappings")]
[PrimaryKey("CleanTitle", autoIncrement = false)]
public class SceneMapping
{
public string CleanTitle { get; set; }
public int SeriesId { get; set; }
public string SceneName { get; set; }
}
}