2012-02-05 06:34:36 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
2012-02-17 22:04:22 +00:00
|
|
|
|
using Services.PetaPoco;
|
2012-02-05 06:34:36 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Repository
|
|
|
|
|
{
|
|
|
|
|
[TableName("SceneMappings")]
|
|
|
|
|
[PrimaryKey("CleanTitle", autoIncrement = false)]
|
|
|
|
|
public class SceneMapping
|
|
|
|
|
{
|
|
|
|
|
public string CleanTitle { get; set; }
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
2012-12-25 08:05:13 +00:00
|
|
|
|
public int Season { get; set; }
|
2012-02-05 06:34:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|