mirror of
https://github.com/Readarr/Readarr
synced 2025-12-19 23:04:49 +01: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; }
|
|
}
|
|
}
|