Radarr/NzbDrone.Core/Download/Clients/Nzbget/JsonRequest.cs

11 lines
199 B
C#
Raw Normal View History

using System;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class JsonRequest
{
public String Method { get; set; }
public object[] Params { get; set; }
}
}