Xbmc Refactored

This commit is contained in:
Mark McDowall 2013-06-11 23:45:25 -07:00
commit b99e62c5ba
38 changed files with 1501 additions and 1521 deletions

View file

@ -15,5 +15,11 @@ namespace NzbDrone.Core.Model.Xbmc
{
public int PlayerId { get; set; }
public string Type { get; set; }
public ActivePlayer(int playerId, string type)
{
PlayerId = playerId;
Type = type;
}
}
}