mirror of https://github.com/lidarr/Lidarr
19 lines
444 B
C#
19 lines
444 B
C#
using Newtonsoft.Json;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|
{
|
|
public class SceneMapping : ModelBase
|
|
{
|
|
[JsonProperty("title")]
|
|
public string ParseTerm { get; set; }
|
|
|
|
[JsonProperty("searchTitle")]
|
|
public string SearchTerm { get; set; }
|
|
|
|
public int TvdbId { get; set; }
|
|
|
|
[JsonProperty("season")]
|
|
public int SeasonNumber { get; set; }
|
|
}
|
|
} |