mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
3dce784672
Updated for v3 of XBMC JSON API.
13 lines
286 B
C#
13 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Model.Xbmc
|
|
{
|
|
public class TvShowResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string JsonRpc { get; set; }
|
|
public TvShowResult Result { get; set; }
|
|
}
|
|
}
|