1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

19 lines
444 B
C#
Raw Normal View History

2013-03-26 22:51:48 -07:00
using Newtonsoft.Json;
2013-03-02 10:25:39 -08:00
using NzbDrone.Core.Datastore;
2013-03-31 19:43:58 -07:00
namespace NzbDrone.Core.DataAugmentation.Scene
2013-03-02 10:25:39 -08:00
{
public class SceneMapping : ModelBase
{
2013-09-05 23:25:34 -07:00
[JsonProperty("title")]
public string ParseTerm { get; set; }
2013-03-26 22:51:48 -07:00
2013-09-05 23:25:34 -07:00
[JsonProperty("searchTitle")]
public string SearchTerm { get; set; }
2013-03-26 22:51:48 -07:00
2013-03-26 01:02:31 -07:00
public int TvdbId { get; set; }
2013-09-05 23:25:34 -07:00
[JsonProperty("season")]
2013-03-02 10:25:39 -08:00
public int SeasonNumber { get; set; }
}
}