mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-06 07:33:16 +01:00
25 lines
561 B
C#
25 lines
561 B
C#
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; }
|
|
|
|
public ActivePlayer(int playerId, string type)
|
|
{
|
|
PlayerId = playerId;
|
|
Type = type;
|
|
}
|
|
}
|
|
}
|