mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Version number parsing for XBMC Frodo
This commit is contained in:
parent
5294928878
commit
b747db6b93
7 changed files with 295 additions and 20 deletions
14
NzbDrone.Core/Model/Xbmc/XbmcJsonResult.cs
Normal file
14
NzbDrone.Core/Model/Xbmc/XbmcJsonResult.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue