2013-07-19 03:47:55 +00:00
|
|
|
|
using System.Collections.Generic;
|
2011-07-09 18:19:33 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Model.Xbmc
|
|
|
|
|
{
|
|
|
|
|
public class ErrorResult
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string JsonRpc { get; set; }
|
|
|
|
|
public Dictionary<string, string> Error { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|