mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 18:47:52 +00:00
348ff5a386
EventClient is used for sending CleanLibrary and Notifications (With NzbDrone Logo - Internal Resource). Support for Dharma's HTTP Server (Deprecated), since Dharma doesn't support Json as well.
19 lines
375 B
C#
19 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Model.Xbmc
|
|
{
|
|
public class Command
|
|
{
|
|
public string jsonrpc
|
|
{
|
|
get { return "2.0"; }
|
|
}
|
|
|
|
public string method { get; set; }
|
|
public Params @params { get; set; }
|
|
public long id { get; set; }
|
|
}
|
|
}
|