mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +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; }
|
|
}
|
|
}
|