mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Fixed scene mapping deserialization
This commit is contained in:
parent
ba4950ea8f
commit
22bbf83e42
2 changed files with 5 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Linq;
|
||||
using Newtonsoft.Json;
|
||||
using NzbDrone.Core.Datastore;
|
||||
|
||||
namespace NzbDrone.Core.ReferenceData
|
||||
|
@ -6,7 +7,11 @@ namespace NzbDrone.Core.ReferenceData
|
|||
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; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue