Version number parsing for XBMC Frodo

This commit is contained in:
Mark McDowall 2012-12-13 13:52:54 -08:00
commit b747db6b93
7 changed files with 295 additions and 20 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public class XbmcJsonResult<T>
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public T Result { get; set; }
}
}