mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-21 15:53:02 +01:00
11 lines
263 B
C#
11 lines
263 B
C#
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; }
|
|
}
|
|
}
|