1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 01:37:07 +00:00
Sonarr/NzbDrone.Api/Qualities/QualityProfileResource.cs
2013-05-31 19:49:52 -07:00

20 lines
No EOL
537 B
C#

using System;
using System.Collections.Generic;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Qualities
{
public class QualityProfileResource : RestResource
{
public String Name { get; set; }
public QualityResource Cutoff { get; set; }
public List<QualityResource> Available { get; set; }
public List<QualityResource> Allowed { get; set; }
}
public class QualityResource : RestResource
{
public Int32 Weight { get; set; }
public String Name { get; set; }
}
}