mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
15 lines
324 B
C#
15 lines
324 B
C#
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; }
|
|
}
|
|
} |