replaced most of ServiceStack with nancy.

This commit is contained in:
Keivan Beigi 2013-01-18 17:27:30 -08:00 committed by kay.one
parent 936886f213
commit acef97b79f
22 changed files with 15057 additions and 334 deletions

View file

@ -12,4 +12,12 @@ namespace NzbDrone.Api.QualityProfiles
public Int32 Cutoff { get; set; }
public List<QualityProfileType> Qualities { get; set; }
}
public class QualityProfileType
{
public Int32 Id { get; set; }
public Int32 Weight { get; set; }
public String Name { get; set; }
public Boolean Allowed { get; set; }
}
}