mirror of https://github.com/Radarr/Radarr
17 lines
401 B
C#
17 lines
401 B
C#
using Newtonsoft.Json;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|
{
|
|
public class SceneMapping : ModelBase
|
|
{
|
|
public string CleanTitle { get; set; }
|
|
|
|
[JsonProperty("Title")]
|
|
public string SceneName { get; set; }
|
|
|
|
[JsonProperty("Id")]
|
|
public int TvdbId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
}
|
|
} |