1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-05 23:12:22 +00:00
Sonarr/NzbDrone.Core/Model/Nzbget/JsonRequest.cs

18 lines
380 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace NzbDrone.Core.Model.Nzbget
{
public class JsonRequest
{
[JsonProperty(PropertyName = "method")]
public String Method { get; set; }
[JsonProperty(PropertyName = "params")]
public object[] Params { get; set; }
}
}