GetActivePlayers will now work with Eden and Dharma.

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

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public class ActivePlayersEdenResult
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public List<ActivePlayer> Result { get; set; }
}
public class ActivePlayer
{
public int PlayerId { get; set; }
public string Type { get; set; }
}
}