mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
10 lines
209 B
C#
10 lines
209 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Api.QualityProfiles
|
|
{
|
|
public class QualityProfileRequest : IApiRequest
|
|
{
|
|
public string ApiKey { get; set; }
|
|
public int Id { get; set; }
|
|
}
|
|
} |