mirror of https://github.com/Sonarr/Sonarr
17 lines
423 B
C#
17 lines
423 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using PetaPoco;
|
|||
|
|
|||
|
namespace NzbDrone.Services.Service.Repository
|
|||
|
{
|
|||
|
[TableName("PendingSceneMappings")]
|
|||
|
[PrimaryKey("CleanTitle", autoIncrement = false)]
|
|||
|
public class PendingSceneMapping
|
|||
|
{
|
|||
|
public string CleanTitle { get; set; }
|
|||
|
public int Id { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
}
|
|||
|
}
|