First crack the API

This commit is contained in:
Mark McDowall 2012-11-03 18:39:29 -07:00
commit b366f8fadc
13 changed files with 139 additions and 24 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Api.QualityProfiles
{
public class QualityProfileModel
{
public Int32 Id { get; set; }
public String Name { get; set; }
public QualityTypes Cutoff { get; set; }
public List<QualityTypes> Allowed { get; set; }
}
}