1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 17:27:59 +00:00
Radarr/NzbDrone.Api/QualityProfiles/QualityProfileRequest.cs
2012-11-03 11:23:47 -07:00

10 lines
No EOL
209 B
C#

using System.Linq;
namespace NzbDrone.Api.QualityProfiles
{
public class QualityProfileRequest : IApiRequest
{
public string ApiKey { get; set; }
public int Id { get; set; }
}
}