1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00
Files
Sonarr/NzbDrone.Core/Download/Clients/Nzbget/JsonRequest.cs
T
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; }
}
}