1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-02 06:31:51 +02:00
Sonarr/NzbDrone.Core/Download/Clients/Nzbget/JsonRequest.cs
2013-09-18 17:30:37 -07:00

11 lines
199 B
C#

using System;
namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class JsonRequest
{
public String Method { get; set; }
public object[] Params { get; set; }
}
}