2013-07-19 05:47:55 +02:00
|
|
|
|
using System.Collections.Generic;
|
2011-07-09 20:19:33 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Model.Xbmc
|
|
|
|
|
{
|
|
|
|
|
public class VersionResult
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string JsonRpc { get; set; }
|
|
|
|
|
public Dictionary<string, int> Result { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|