cleaned up handling of Unknown quality type.

This commit is contained in:
Keivan Beigi
2013-05-30 18:43:13 -07:00
parent 3c53e6009d
commit c1bbd0bd5d
5 changed files with 9 additions and 15 deletions

View File

@@ -6,7 +6,6 @@ namespace NzbDrone.Api.Qualities
{
public class QualityProfileResource : RestResource
{
public Int32 Id { get; set; }
public String Name { get; set; }
public QualityResource Cutoff { get; set; }
public List<QualityResource> Qualities { get; set; }
@@ -15,7 +14,6 @@ namespace NzbDrone.Api.Qualities
public class QualityResource : RestResource
{
public Int32 Id { get; set; }
public Int32 Weight { get; set; }
public String Name { get; set; }
}