2013-03-02 18:25:39 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-25 04:36:24 +00:00
|
|
|
|
using ServiceStack.DataAnnotations;
|
2013-03-02 18:25:39 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.ReferenceData
|
|
|
|
|
{
|
2013-03-25 04:36:24 +00:00
|
|
|
|
[Alias("SceneMappings")]
|
2013-03-02 18:25:39 +00:00
|
|
|
|
public class SceneMapping : ModelBase
|
|
|
|
|
{
|
|
|
|
|
public string CleanTitle { get; set; }
|
|
|
|
|
public int TvdbId { get; set; }
|
|
|
|
|
public string SceneName { get; set; }
|
|
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|