mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
19 lines
439 B
C#
19 lines
439 B
C#
using Newtonsoft.Json;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|
{
|
|
public class SceneMapping : ModelBase
|
|
{
|
|
[JsonProperty("CleanTitle")]
|
|
public string ParseTerm { get; set; }
|
|
|
|
[JsonProperty("Title")]
|
|
public string SearchTerm { get; set; }
|
|
|
|
[JsonProperty("Id")]
|
|
public int TvdbId { get; set; }
|
|
|
|
public int SeasonNumber { get; set; }
|
|
}
|
|
} |