mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
10 lines
232 B
C#
10 lines
232 B
C#
namespace NzbDrone.Core.Notifications.Xbmc.Model
|
|
{
|
|
public class TvShowResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string JsonRpc { get; set; }
|
|
public TvShowResult Result { get; set; }
|
|
}
|
|
}
|