1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Fixed Series.QualityProfile relationship

more subsonic cleanup
This commit is contained in:
kay.one
2011-06-17 21:39:02 -07:00
parent 17d084cdf3
commit 520e9c9d14
11 changed files with 74 additions and 61 deletions
+4 -4
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; }
}
}
}