Wired-up drop folder move

This commit is contained in:
kay.one 2011-06-20 22:44:01 -07:00
commit 63adb6b566
10 changed files with 429 additions and 304 deletions

View file

@ -24,5 +24,19 @@ namespace NzbDrone.Core.Repository
[Ignore]
public Series Series { get; set; }
[Ignore]
public Model.Quality QualityWrapper
{
get
{
return new Model.Quality(Quality, Proper);
}
set
{
Quality = value.QualityType;
Proper = value.Proper;
}
}
}
}