1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 17:59:14 +00:00
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Repository/PendingSceneMapping.cs

17 lines
No EOL
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; }
}
}