GetActivePlayers will now work with Eden and Dharma.

This commit is contained in:
Mark McDowall
2011-12-31 12:57:02 -08:00
parent ec6059e09d
commit 2cc066ccf2
5 changed files with 193 additions and 22 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public class ActivePlayersDharmaResult
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public Dictionary<string, bool> Result { get; set; }
}
}