1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 10:19:41 +00:00
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Repository/PendingSceneMapping.cs
2012-02-26 18:13:11 -08:00

21 lines
No EOL
542 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Services.PetaPoco;
namespace NzbDrone.Services.Service.Repository
{
[TableName("PendingSceneMappings")]
[PrimaryKey("MappingId", autoIncrement = true)]
public class PendingSceneMapping
{
public int MappingId { get; set; }
public string CleanTitle { get; set; }
public int Id { get; set; }
public string Title { get; set; }
[ResultColumn]
public string Commands { get; set; }
}
}