mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
First crack the API
This commit is contained in:
parent
64468cd9ed
commit
b366f8fadc
13 changed files with 139 additions and 24 deletions
16
NzbDrone.Api/QualityProfiles/QualityProfileModel.cs
Normal file
16
NzbDrone.Api/QualityProfiles/QualityProfileModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue