mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
SceneNaming is now stored on NzbDrone webserver.
Database will update every 12 hours from CSV on server.
This commit is contained in:
parent
6dda51d0e7
commit
ab2007cb6f
11 changed files with 312 additions and 159 deletions
18
NzbDrone.Core/Repository/SceneNameMapping.cs
Normal file
18
NzbDrone.Core/Repository/SceneNameMapping.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
public class SceneNameMapping
|
||||
{
|
||||
[SubSonicPrimaryKey]
|
||||
public virtual string SceneCleanName { get; set; }
|
||||
|
||||
public virtual int SeriesId { get; set; }
|
||||
|
||||
public virtual string SceneName { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue