1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-06 19:49:02 +00:00
Sonarr/NzbDrone.Core/DataAugmentation/Scene/SceneMapping.cs

17 lines
401 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
{
public string CleanTitle { get; set; }
2013-03-26 22:51:48 -07:00
[JsonProperty("Title")]
2013-03-02 10:25:39 -08:00
public string SceneName { get; set; }
2013-03-26 22:51:48 -07:00
[JsonProperty("Id")]
2013-03-26 01:02:31 -07:00
public int TvdbId { get; set; }
2013-03-02 10:25:39 -08:00
public int SeasonNumber { get; set; }
}
}