You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Repository/PendingSceneMapping.cs

21 lines
542 B

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; }
}
}