mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 18:47:52 +00:00
9 lines
218 B
C#
9 lines
218 B
C#
namespace NzbDrone.Core.Model.Xbmc
|
|
{
|
|
public class TvShowResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string JsonRpc { get; set; }
|
|
public TvShowResult Result { get; set; }
|
|
}
|
|
}
|