1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 11:02:40 +01:00
Radarr/NzbDrone.Core/DataAugmentation/Scene/SceneMapping.cs

17 lines
401 B
C#
Raw Normal View History

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