1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-24 02:11:43 +02:00
Radarr/NzbDrone.Core/Model/Xbmc/TvShowResult.cs

14 lines
304 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Xbmc
{
public class TvShowResult
{
public string Id { get; set; }
public string JsonRpc { get; set; }
public Dictionary<string, List<TvShow>> Result { get; set; }
}
}