mirror of
https://github.com/Readarr/Readarr
synced 2026-04-29 00:01:17 +02:00
13 lines
309 B
C#
13 lines
309 B
C#
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; }
|
|
}
|
|
}
|