You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
401 B
17 lines
401 B
12 years ago
|
using Newtonsoft.Json;
|
||
12 years ago
|
using NzbDrone.Core.Datastore;
|
||
|
|
||
12 years ago
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
||
12 years ago
|
{
|
||
|
public class SceneMapping : ModelBase
|
||
|
{
|
||
|
public string CleanTitle { get; set; }
|
||
12 years ago
|
|
||
|
[JsonProperty("Title")]
|
||
12 years ago
|
public string SceneName { get; set; }
|
||
12 years ago
|
|
||
|
[JsonProperty("Id")]
|
||
12 years ago
|
public int TvdbId { get; set; }
|
||
12 years ago
|
public int SeasonNumber { get; set; }
|
||
|
}
|
||
|
}
|