Lidarr/src/NzbDrone.Core/DataAugmentation/Scene/SceneMapping.cs
2014-04-14 21:51:37 +01:00

20 lines
No EOL
455 B
C#

using Newtonsoft.Json;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.DataAugmentation.Scene
{
public class SceneMapping : ModelBase
{
public string Title { get; set; }
public string ParseTerm { get; set; }
[JsonProperty("searchTitle")]
public string SearchTerm { get; set; }
public int TvdbId { get; set; }
[JsonProperty("season")]
public int SeasonNumber { get; set; }
}
}