mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 11:05:44 +00:00
15 lines
349 B
C#
15 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; }
|
|
}
|
|
}
|