1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/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; }
}
}