Sonarr/NzbDrone.Services/NzbDrone.Services.Service/Repository/PendingSceneMapping.cs

17 lines
432 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Services.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; }
}
}