2016-12-23 21:45:24 +00:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
2014-05-13 17:57:46 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Http
|
|
|
|
|
{
|
|
|
|
|
public class JsonRpcResponse<T>
|
|
|
|
|
{
|
2015-10-03 17:45:26 +00:00
|
|
|
|
public string Id { get; set; }
|
2014-05-13 17:57:46 +00:00
|
|
|
|
public T Result { get; set; }
|
2016-02-28 16:34:24 +00:00
|
|
|
|
public JToken Error { get; set; }
|
2014-05-13 17:57:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|