Sonarr/NzbDrone.Core/ReferenceData/SceneMapping.cs

18 lines
414 B
C#
Raw Normal View History

2013-03-02 18:25:39 +00:00
using System.Linq;
2013-03-27 05:51:48 +00:00
using Newtonsoft.Json;
2013-03-02 18:25:39 +00:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.ReferenceData
{
public class SceneMapping : ModelBase
{
public string CleanTitle { get; set; }
2013-03-27 05:51:48 +00:00
[JsonProperty("Title")]
2013-03-02 18:25:39 +00:00
public string SceneName { get; set; }
2013-03-27 05:51:48 +00:00
[JsonProperty("Id")]
2013-03-26 08:02:31 +00:00
public int TvdbId { get; set; }
2013-03-02 18:25:39 +00:00
public int SeasonNumber { get; set; }
}
}