2013-01-24 06:36:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Nzbget
|
2013-01-24 06:36:37 +00:00
|
|
|
|
{
|
|
|
|
|
public class JsonRequest
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(PropertyName = "method")]
|
|
|
|
|
public String Method { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(PropertyName = "params")]
|
|
|
|
|
public object[] Params { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|