Sonarr/NzbDrone.Core/Model/Xbmc/TvShowResponse.cs

10 lines
218 B
C#
Raw Normal View History

2013-07-19 03:47:55 +00:00
namespace NzbDrone.Core.Model.Xbmc
{
public class TvShowResponse
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public TvShowResult Result { get; set; }
}
}