New series will be added monitored and quality will be set to default quality.

Series now stores a QualityProfile instead of QualityType
This commit is contained in:
markus101 2011-02-14 19:48:39 -08:00
commit da79ad147e
2 changed files with 11 additions and 3 deletions

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using NzbDrone.Core.Repository.Quality;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
@ -29,7 +30,7 @@ namespace NzbDrone.Core.Repository
public bool Monitored { get; set; }
public int Quality { get; set; }
public QualityProfile QualityProfile { get; set; }
[SubSonicToManyRelation]
public virtual List<Season> Seasons { get; private set; }