1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 17:47:08 +00:00
Lidarr/NzbDrone.Api/Qualities/QualityProfileResource.cs
2013-05-19 17:30:02 -07:00

21 lines
No EOL
540 B
C#

using System;
using System.Collections.Generic;
namespace NzbDrone.Api.Qualities
{
public class QualityProfileResource
{
public Int32 Id { get; set; }
public String Name { get; set; }
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; }
}
}