mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 07:13:17 +01:00
15 lines
No EOL
324 B
C#
15 lines
No EOL
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; }
|
|
}
|
|
} |