mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
cleaned up scene mapping code.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user