mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
11 lines
278 B
C#
11 lines
278 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Notifications.Xbmc.Model
|
|
{
|
|
public class ActivePlayersResult
|
|
{
|
|
public string Id { get; set; }
|
|
public string JsonRpc { get; set; }
|
|
public List<ActivePlayer> Result { get; set; }
|
|
}
|
|
}
|