SceneNaming is now stored on NzbDrone webserver.

Database will update every 12 hours from CSV on server.
This commit is contained in:
Mark McDowall 2011-06-13 19:15:55 -07:00
commit ab2007cb6f
11 changed files with 312 additions and 159 deletions

View 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; }
}
}