1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/DataAugmentation/Scene/SceneMapping.cs

19 lines
439 B
C#
Raw Normal View History

2013-03-27 08:51:48 +03:00
using Newtonsoft.Json;
2013-03-02 21:25:39 +03:00
using NzbDrone.Core.Datastore;
2013-04-01 05:43:58 +03:00
namespace NzbDrone.Core.DataAugmentation.Scene
2013-03-02 21:25:39 +03:00
{
public class SceneMapping : ModelBase
{
[JsonProperty("CleanTitle")]
public string ParseTerm { get; set; }
2013-03-27 08:51:48 +03:00
[JsonProperty("Title")]
public string SearchTerm { get; set; }
2013-03-27 08:51:48 +03:00
[JsonProperty("Id")]
2013-03-26 11:02:31 +03:00
public int TvdbId { get; set; }
2013-03-02 21:25:39 +03:00
public int SeasonNumber { get; set; }
}
}