Fixed Series.QualityProfile relationship

more subsonic cleanup
This commit is contained in:
kay.one 2011-06-17 21:39:02 -07:00
commit 520e9c9d14
11 changed files with 74 additions and 61 deletions

View file

@ -6,10 +6,10 @@ namespace NzbDrone.Core.Repository
[PrimaryKey("CleanTitle", autoIncrement = false)]
public class SceneMapping
{
public virtual string CleanTitle { get; set; }
public string CleanTitle { get; set; }
public virtual int SeriesId { get; set; }
public int SeriesId { get; set; }
public virtual string SceneName { get; set; }
public string SceneName { get; set; }
}
}
}