1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-04 10:48:42 +00:00
Radarr/NzbDrone.Api/QualityProfiles/QualityProfileModel.cs

16 lines
406 B
C#
Raw Normal View History

2012-11-03 18:39:29 -07:00
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; }
2012-11-09 08:28:59 -08:00
public Int32 Cutoff { get; set; }
2012-11-24 00:03:38 -08:00
public List<QualityProfileType> Qualities { get; set; }
2012-11-03 18:39:29 -07:00
}
2012-11-24 00:03:38 -08:00
}