mirror of https://github.com/Radarr/Radarr
15 lines
323 B
C#
15 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
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; }
|
|
}
|
|
}
|