mirror of
https://github.com/Radarr/Radarr
synced 2026-04-29 05:53:12 +02: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; }
|
|
}
|
|
}
|