1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-04 10:48:42 +00:00
Radarr/NzbDrone.Core/Model/Xbmc/ErrorResult.cs

12 lines
263 B
C#
Raw Normal View History

2013-07-18 20:47:55 -07:00
using System.Collections.Generic;
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; }
}
}